-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathrun-tests.js
49 lines (45 loc) · 1.21 KB
/
run-tests.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
var webdriverio = require('webdriverio');
var browsers = [
{
browserName: 'MicrosoftEdge',
'platform': 'Windows 10',
'version': '20.10240',
},
{
browserName: 'internet explorer',
'platform': 'Windows 10',
'version': '11.0',
},
{
browserName: 'iphone',
platform: 'OS X 10.10',
version: '9.2',
deviceName: 'iPhone 6 Plus'
}
];
function runTests(browser){
var options = {
host: 'ondemand.saucelabs.com',
port: 80,
user: process.env.SAUCE_USER,
key: process.env.SAUCE_KEY,
desiredCapabilities: browser,
// logLevel: 'verbose'
};
var name = browser.browserName + ' ' + browser.version;
var client = webdriverio.remote(options);
console.log('starting ' + name);
var timeout = 180*1000;
client
.init()
.url('https://29a.ch/sandbox/2016/normalmap.js/tests/')
.waitForVisible('.test-results', timeout)
.element('.test-results-passed')
.then(function(el){
console.log(name + ' passed');
}, function(e){
console.log(name + ' passed', e);
})
.end();
}
browsers.forEach(runTests);