-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathappConfig.py
More file actions
31 lines (28 loc) · 809 Bytes
/
appConfig.py
File metadata and controls
31 lines (28 loc) · 809 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
app_android_desired_caps = {
"platformName": "Android",
"appium:deviceName": "Galaxy S20",
"appium:platformVersion": "10",
"appium:automationName": "UiAutomator2",
"appium:app": "lt://proverbial-android",
"lt:options": {
"build": "Python Behave - Android",
"name": "Sample Test Android",
"isRealMobile": True,
"visual": True,
"video": True,
"w3c": True
}
}
app_ios_desired_caps = {
"platformName": "iOS",
"appium:deviceName": "iPhone 14",
"appium:platformVersion": "16",
"appium:automationName": "XCUITest",
"appium:app": "lt://proverbial-ios",
"lt:options": {
"w3c": True,
"build": "Python Behave iOS Build",
"name": "iOS App Automation Test",
"isRealMobile": True
}
}