Skip to content

Instantly share code, notes, and snippets.

@kkashyap1707
Last active June 10, 2016 17:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kkashyap1707/bf11bb0bede3e73489e4fb46237ab180 to your computer and use it in GitHub Desktop.
Save kkashyap1707/bf11bb0bede3e73489e4fb46237ab180 to your computer and use it in GitHub Desktop.
Configuration File for Protractor Project
/**
* Created by Keshav on 6/9/2016.
* Configuration File Use By Protractor
*
*/
exports.config = {
seleniumAddress: 'http://localhost:4444/wd/hub',
getPageTimeout: 95000,
capabilities: {
'browserName': 'chrome' //Name of the Browser on which you wants to run the test cases
},
suites: {
Login: '../Demo/DemoDirectory/fame1/login.spec.js' //Test Case Location with their names
},
jasmineNodeOpts: {
showColors: true
},
baseUrl: 'https://fame.live/', //Base URL on which you wants to perform test
//Parameters Used as Test Input
params:{
userName : 'ikeshav',password : '123456'
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment