We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1ef4097 commit 9a50527Copy full SHA for 9a50527
config/settings.yaml
@@ -11,6 +11,11 @@ stage:
11
app: ""
12
platformVersion: "15"
13
automationName: "uiautomator2"
14
+ IOS:
15
+ platformName: "iOS"
16
+ deviceName: "iPhone 14"
17
+ bundleId: "com.example.app"
18
+ automationName: "XCUITest"
19
20
prod:
21
DEBUG: True
src/drivers/ios_driver.py
@@ -6,4 +6,4 @@
6
class iOSDriver:
7
@staticmethod
8
def get_driver(platform: str):
9
- return webdriver.Remote(settings.APPIUM_SERVER, caps)
+ return settings.iOS.to_dict()
0 commit comments