ChromeDriver Options for starting Chrome with WebDriver

By |2018-03-29T14:31:13+00:00October 13th, 2017|Categories: Selenium WebDriver|Tags: , , , , |

In this Blog we take a look at some of the options provided with the ChromeDriver Server for starting Chrome with various options when using Selenium WebDriver. The examples are in C# so you may need to tailor for Java. Set Path to the ChromeDriver Server System.setProperty("webdriver.chrome.driver","C:\\Drivers\\chromedriver.exe") WebDriver driver = new ChromeDriver(); driver.get("http://www.google.com"); or you [...]