public static void beforeClassTest() { String baseURL = "https://wta-with-se34-webdriver.info"; System.setProperty("webdriver.chrome.driver", "/path/to/your/chromedriver"); options = new ChromeOptions(); options.addArguments("--start-maximazed"); driver = new ChromeDriver(options); driver.get(baseURL); wait = new WebDriverWait(driver, 10); } |