diff --git a/fastfive-auto-app-dev/config.py b/fastfive-auto-app-dev/config.py index a936e52..efb6066 100644 --- a/fastfive-auto-app-dev/config.py +++ b/fastfive-auto-app-dev/config.py @@ -11,9 +11,9 @@ 'platformName': 'Android', 'appium:deviceName': os.environ.get("DEVICE_NAME", "emulator-5554"), 'appium:appPackage': os.environ.get("APP_PACKAGE", "com.fastfive.work.staging"), - 'appium:appActivity': 'com.fastfive.work.MainActivity', + 'appium:appActivity': os.environ.get("APP_ACTIVITY", "com.fastfive.work.MainActivity"), 'appium:automationName': 'UiAutomator2', - 'appium:noReset': False + 'appium:noReset': True } # iOS 설정 @@ -30,7 +30,7 @@ 'appium:useNewWDA': True } -APPIUM_URL = os.environ.get("APPIUM_URL", "http://127.0.0.1:4723/wd/hub") +APPIUM_URL = os.environ.get("APPIUM_URL", "http://127.0.0.1:4723") # 테스트 계정 if PLATFORM == "ios":