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
45 lines (41 loc) · 998 Bytes
/
caps.js
File metadata and controls
45 lines (41 loc) · 998 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
38
39
40
41
42
43
44
45
exports.ios92 = {
browserName: '',
'appium-version': '1.6',
platformName: 'iOS',
platformVersion: '10.1',
deviceName: 'iPhone 5s',
app: undefined // will be set later
};
exports.ios81 = {
browserName: '',
'appium-version': '1.6',
platformName: 'iOS',
platformVersion: '10.1',
deviceName: 'iPhone Simulator',
app: undefined // will be set later
};
exports.android18 = {
browserName: '',
'appium-version': '1.6',
platformName: 'Android',
platformVersion: '5.1',
deviceName: 'Android Emulator',
app: undefined // will be set later
};
exports.android19 = {
browserName: '',
'appium-version': '1.6',
platformName: 'Android',
platformVersion: '5.1',
deviceName: 'Android Emulator',
app: undefined // will be set later
};
exports.selendroid16 = {
browserName: '',
'appium-version': '1.6',
platformName: 'Android',
platformVersion: '5.1',
automationName: 'selendroid',
deviceName: 'Android Emulator',
app: undefined // will be set later
};