-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathappConfig.py
More file actions
30 lines (29 loc) · 797 Bytes
/
appConfig.py
File metadata and controls
30 lines (29 loc) · 797 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
app_android_desired_caps = {
"lt:options": {
"platformName": "android",
"deviceName": "Galaxy S20",
"platformVersion": "10",
"build": "Python Behave - Android",
"name": "Sample Test Android",
"app": "lt://APP10160301691747362768822447",
"isRealMobile": True,
"visual": True,
"video": True,
"w3c": True
}
}
app_ios_desired_caps = {
"lt:options": {
"deviceName": "iPhone 12",
"platformName": "ios",
"platformVersion": "14",
"build": "Python Behave - iOS",
"name": "Sample Test iOS",
"app": "lt://APP1016019351747817555938149",
"isRealMobile": True,
"network": False,
"visual": True,
"video": True,
"w3c": True
}
}