Commit a61bea2d authored by JunHyung An's avatar JunHyung An
Browse files

Add linux only chrome argument and user input webdriver location

parent 3033a963
Loading
Loading
Loading
Loading
+7 −4
Original line number Diff line number Diff line
@@ -19,9 +19,12 @@ class MultipleTest(unittest.TestCase):
        options.add_argument('--guest')
        options.add_argument("--window-size=1920,1080")

        # print("webdriver 위치: ")
        #self.webdriver_path = input()
        self.webdriver_path = 'C:\\Users\\watchtek\\Documents\\chromedriver-win64\\chromedriver.exe'
        # Linux Only
        # options.add_argument("--no-sandbox")
        # options.add_argument("--disable-dev-shm-usage")

        print("[필수 입력] webdriver 위치: ")
        self.webdriver_path = input()

        print("[필수 입력] 테스트 대상 웹 (e.g., https://example.com:8443/): ")
        self.DC_address = input()