forked from appium-boneyard/sample-code
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcaps.js
More file actions
37 lines (33 loc) · 817 Bytes
/
caps.js
File metadata and controls
37 lines (33 loc) · 817 Bytes
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
exports.ios81 = {
browserName: '',
'appium-version': '1.3',
platformName: 'iOS',
platformVersion: '8.1',
deviceName: 'iPhone Simulator',
app: undefined // will be set later
};
exports.android18 = {
browserName: '',
'appium-version': '1.3',
platformName: 'Android',
platformVersion: '4.3',
deviceName: 'Android Emulator',
app: undefined // will be set later
};
exports.android19 = {
browserName: '',
'appium-version': '1.3',
platformName: 'Android',
platformVersion: '4.4.2',
deviceName: 'Android Emulator',
app: undefined // will be set later
};
exports.selendroid16 = {
browserName: '',
'appium-version': '1.3',
platformName: 'Android',
platformVersion: '4.1',
automationName: 'selendroid',
deviceName: 'Android Emulator',
app: undefined // will be set later
};