Selenium Webdriver Instantiation in Selenium(3.7.x)

In latest selenium 3.7.x version, most of the drivers (Chrome, Firefox, IE, Safari) are deprecated; in the next release of selenium will remove those driver instantiation logic. Following are the new way of driver instantiation in selenium 3.7.x: For Internet Explorer: WebDriver driver; System.setProperty("webdriver.ie.driver", <path to IEDriverServer>); InternetExplorerDriverService ieservice= new InternetExplorerDriverService.Builder().build(); driver = new InternetExplorerDriver(ieservice); For... Continue Reading →

Create a website or blog at WordPress.com

Up ↑

%d bloggers like this: