-
Notifications
You must be signed in to change notification settings - Fork 56
/
node-example.js
55 lines (47 loc) · 1.53 KB
/
node-example.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
var browserstack = require('./index');
var local = new browserstack.Local();
var webdriver = require('selenium-webdriver');
var identifier = 'adqqwdqwd';
var capabilities = {
build: 'build',
'browserName': 'chrome',
'os': 'OS X',
'browserstack.local': true
//'browserstack.localIdentifier': identifier
}
var options = {
'key': process.env.BROWSERSTACK_ACCESS_KEY,
//hosts: [{
// name: 'localhost',
// port: 8080,
// sslFlag: 0
//}],
//'-f': __dirname,
//'-binaryPath': '/var/BrowserStackLocal'
};
// try {
local.start(options, function() {
console.log('Is Running ' + local.isRunning());
console.log('Started');
capabilities['browserstack.user'] = process.env.BROWSERSTACK_USERNAME;
capabilities['browserstack.key'] = process.env.BROWSERSTACK_ACCESS_KEY;
capabilities['browserstack.local'] = true;
//capabilities['browserstack.localIdentifier'] = identifier;
driver = new webdriver.Builder().usingServer('http://hub.browserstack.com/wd/hub').withCapabilities(capabilities).build();
console.log('Is Running ' + local.isRunning());
driver.get("http://www.google.com").then(function() {
console.log('Is Running ' + local.isRunning());
driver.quit().then(function() {
console.log('Is Running ' + local.isRunning());
local.stop(function() {
console.log('Is Running ' + local.isRunning());
console.log('Stopped');
});
});
});
});
// }
// catch(error){
// console.log("Got Error From Local " + error);
// process.exit();
// }