Skip to content

Instantly share code, notes, and snippets.

@PrashantBhatasana
Created April 22, 2019 16:26
Show Gist options
  • Save PrashantBhatasana/cf681d832e6736645284588aa3fefef9 to your computer and use it in GitHub Desktop.
Save PrashantBhatasana/cf681d832e6736645284588aa3fefef9 to your computer and use it in GitHub Desktop.
this is Demo protractor configuration file for my article.
// An example configuration file.
exports.config = {
directConnect: true,
// Capabilities to be passed to the webdriver instance.
capabilities: {
'browserName': 'chrome' //firefox,chrome
},
// Framework to use. Jasmine is recommended.
framework: 'jasmine',
// Spec patterns are relative to the current working directory when protractor is called.
specs: ['e2e/*spec.js'],
// Options to be passed to Jasmine.
jasmineNodeOpts: {
defaultTimeoutInterval: 100000
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment