Created
January 19, 2015 19:39
-
-
Save tonetheman/5369e5e7f6cbd8d95e41 to your computer and use it in GitHub Desktop.
multi capability for protractor and crossbrowsertesting.com
This file contains hidden or 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
| exports.config = { | |
| seleniumAddress : | |
| 'http://USERNAME:AUTHKEY@hub.crossbrowsertesting.com:80/wd/hub', | |
| multiCapabilities : [ | |
| { | |
| name : 'multi test', | |
| browser_api_name : 'FF31', | |
| os_api_name : 'WinXPSP2-C2', | |
| screen_resolution : '1024x768', | |
| record_video : true, | |
| record_network : false, | |
| record_snapshot : false, | |
| username : 'USERNAME', | |
| password : 'AUTHKEY' | |
| }, | |
| { | |
| name : 'multi test 2', | |
| browser_api_name : 'FF32', | |
| os_api_name : 'WinXPSP2-C2', | |
| screen_resolution : '1024x768', | |
| record_video : true, | |
| record_network : false, | |
| record_snapshot : false, | |
| username : 'USERNAME', | |
| password : 'AUTHKEY' | |
| } | |
| ], | |
| specs : ['todo-spec.js'] | |
| }; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment