Skip to content

Commit 9a50527

Browse files
author
dmy.berezovskyi
committed
fix
1 parent 1ef4097 commit 9a50527

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

config/settings.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,11 @@ stage:
1111
app: ""
1212
platformVersion: "15"
1313
automationName: "uiautomator2"
14+
IOS:
15+
platformName: "iOS"
16+
deviceName: "iPhone 14"
17+
bundleId: "com.example.app"
18+
automationName: "XCUITest"
1419

1520
prod:
1621
DEBUG: True

src/drivers/ios_driver.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66
class iOSDriver:
77
@staticmethod
88
def get_driver(platform: str):
9-
return webdriver.Remote(settings.APPIUM_SERVER, caps)
9+
return settings.iOS.to_dict()

0 commit comments

Comments
 (0)