Skip to content

Instantly share code, notes, and snippets.

@lydemann
Created September 17, 2018 14:25
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save lydemann/9bb71485f12ffdde7a9b23d1eeab56ff to your computer and use it in GitHub Desktop.
Save lydemann/9bb71485f12ffdde7a9b23d1eeab56ff to your computer and use it in GitHub Desktop.
protractor.conf.js
// Protractor configuration file, see link for more information
// https://github.com/angular/protractor/blob/master/lib/config.ts
const { SpecReporter } = require('jasmine-spec-reporter');
exports.config = {
allScriptsTimeout: 11000,
specs: [
'./src/**/*.e2e-spec.ts'
],
capabilities: {
'browserName': 'chrome'
},
SELENIUM_PROMISE_MANAGER: false,
directConnect: true,
baseUrl: 'http://localhost:4200/',
framework: 'jasmine',
jasmineNodeOpts: {
showColors: true,
defaultTimeoutInterval: 999999,
print: function () { }
},
onPrepare() {
require('ts-node').register({
project: require('path').join(__dirname, './tsconfig.e2e.json')
});
jasmine.getEnv().addReporter(new SpecReporter({ spec: { displayStacktrace: true } }));
browser.driver.manage().window().setSize(1366, 1024);
}
};
@T-e-j-k-u-m-a-r
Copy link

Hey Hello,

Do we have to set the SELENIUM_PROMISE_MANAGER to false or true now?
As we know Protractor is deprecated and WEBDRIVERJS has stopped supporting Control Flow, I feel it should be set to false just like you have mentioned, However I would like to discuss more on that!

Will be waiting for your ping.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment