Open GoogleCodeExporter opened 9 years ago
Original comment by samu...@chromium.org
on 21 Feb 2015 at 12:18
Can you please try with below code and let us know, I have verified in latest
version of ChromeDriver ( 2.14) with latest chrome(41.0.2272.101) and selenium
version (2.45) and issue is not reproducible. I'm able to suppress error
logging and log file of chromeDriver.
ChromeDriverService service=new ChromeDriverService.Builder()
.usingDriverExecutable(new File("C://path//to//chromedriver.exe"))
.usingAnyFreePort().withLogFile(new File ("C://path//to//logfile.txt"))
.withSilent(true)
.build();
service.start();
WebDriver driver = new RemoteWebDriver(service.getUrl(), DesiredCapabilities.chrome());
driver.get("https://www.google.com/");
driver.findElement(By.name("q")).sendKeys("test");
System.out.println("Test Complete");
driver.quit();
if ( service.isRunning() );
service.stop();
Original comment by agau...@chromium.org
on 2 Apr 2015 at 12:35
Original issue reported on code.google.com by
cnh...@gmail.com
on 11 Sep 2013 at 6:43