I'm using Selenium webdriver
but it don't quit chrome
and chrome
driver properly . Some of processes staid runner.
code for quitting chrome :
driver.quit();
code for starting chrome :
System.setProperty("webdriver.chrome.driver","/<path to chrome driver>/chromedriver");
ChromeOptions options = new ChromeOptions();
options.setBinary(new File("/<path to chrome >/google-chrome"));
driver = new ChromeDriver(options);
Chrome driver version :2.9.248304 Chromium version :40.0.2214.115 Selenium version :2.32 OS: Linux java.version: 1.7.0_71
Thanks in advance , Naira
2.32
? - it is very very old, upgrade to the latest (2.45
). – Altimetrydriver.quit()
actually got executed? – Gomphosis