Drivers Chrome versió 148

This commit is contained in:
Guillem Hernandez Sola
2026-06-10 10:47:20 +02:00
parent 5cbbca59d0
commit c136d44437
4 changed files with 4 additions and 1 deletions

View File

@@ -28,7 +28,10 @@ public class BaseTest {
driver = new FirefoxDriver(options);
} else {
ChromeOptions options = new ChromeOptions();
System.setProperty("webdriver.chrome.driver", "src" + File.separator + "test" + File.separator + "resources" + File.separator + "chromedriver-macos");
System.setProperty("webdriver.chrome.driver", "src"
+ File.separator
+ "test" + File.separator + "resources"
+ File.separator + "chromedriver-macos");
driver = new ChromeDriver(options);
}
driver.manage().timeouts().implicitlyWait(Duration.ofSeconds(30));

Binary file not shown.