Running tests on Dockerized Selenium Grid and want to run tests on specific browser versions
I am trying to run tests on specific browser versions using a Dockerized Selenium Grid. Webdriver implementation: public static WebDriver get(String mode, String browser, String version) { WebDriver driver = null; Map<String, Object> prefs = new HashMap<>(); prefs.put("download.default_directory", Constants.getDownloadpath()); ChromeOptions…