We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9540727 commit 96456b6Copy full SHA for 96456b6
2 files changed
conftest.py
@@ -1,13 +1,8 @@
1
import pytest
2
-from appium import webdriver
3
-from appium.options.android import UiAutomator2Options
4
5
from drivers.driver_factory import Driver
6
7
8
-# from src.drivers.driver_factory import Driver
9
-
10
11
@pytest.hookimpl
12
def pytest_addoption(parser):
13
"""
src/drivers/ios_driver.py
@@ -1,7 +1,5 @@
from pathlib import Path
-from appium.webdriver import webdriver
from config import settings
@@ -14,6 +12,6 @@ def get_caps():
14
if not caps:
15
raise ValueError("❌ ANDROID capabilities not found in settings.yaml")
16
17
- # caps["app"] = str(Path(__file__).resolve().parents[2] / "data/apps/demo.ipa")
+ caps["app"] = str(Path(__file__).resolve().parents[2] / "data/apps/demo.ipa")
18
19
return caps
0 commit comments