Created
April 22, 2019 16:26
-
-
Save PrashantBhatasana/cf681d832e6736645284588aa3fefef9 to your computer and use it in GitHub Desktop.
this is Demo protractor configuration file for my article.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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