-
Notifications
You must be signed in to change notification settings - Fork 4.3k
/
Copy pathcaps.js
37 lines (34 loc) · 949 Bytes
/
caps.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
const ios = {
browserName: '',
platformName: 'iOS',
os: 'iOS',
deviceOrientation: 'portrait',
automationName: 'XCUITest',
appiumVersion: '1.17.1', // Sauce Labs requires appiumVersion to be specified.
app: undefined, // will be set later, locally this is relative to root of project
processArguments: {
args: [ 'uitesting' ],
},
};
exports.iosLocal = {
...ios,
deviceName: 'iPhone 11',
};
exports.iosServer = {
...ios,
platformVersion: '13.4', // Supported Sauce Labs platforms can be found here: https://saucelabs.com/rest/v1/info/platforms/appium
deviceName: 'iPhone 11 Simulator',
};
exports.android = {
browserName: '',
platformName: 'Android',
platformVersion: '9.0',
deviceName: 'Google Pixel 3 XL GoogleAPI Emulator',
automationName: 'UiAutomator2',
os: 'Android',
appPackage: 'com.gutenberg',
appActivity: 'com.gutenberg.MainActivity',
deviceOrientation: 'portrait',
appiumVersion: '1.16.0',
app: undefined,
};