Skip to content

Commit bc17fbf

Browse files
committed
Corrected syntax for BrowserStack
1 parent 4edd3a3 commit bc17fbf

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

examples/cloudservices/webdriverio.browserstack.js

+6-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
var webdriverio = require('../../index'),
22
client = webdriverio.remote({
33
desiredCapabilities: {
4-
browserName: 'chrome',
5-
version: '27',
6-
platform: 'XP'
4+
browser : 'Chrome',
5+
browser_version : '46.0',
6+
os : 'Windows',
7+
os_version : '10',
8+
resolution : '1024x768'
79
},
810
host: 'hub.browserstack.com',
911
port: 80,
@@ -20,4 +22,4 @@ client
2022
.getTitle().then(function(title) {
2123
console.log(title);
2224
})
23-
.end();
25+
.end();

0 commit comments

Comments
 (0)