public void SeleniumLocalChromeGoogleTest()
 {
     Assert.IsTrue(Selenium.SetProxyType("System"), "Set Proxy System");
     Assert.IsTrue(_selenium.SetBrowser("Chrome"), "Set Browser Chrome");
     Assert.IsTrue(_selenium.Open(new Uri("http://www.google.com")), "Open Uri");
     Assert.IsTrue(_selenium.WaitForElement(CookiesOkButton));
     _selenium.ClickElement(CookiesOkButton);
     Assert.IsTrue(_selenium.WaitForElement("trial:q"));
     Assert.IsTrue(_selenium.Url.Contains("google."), "URL contains google");
     Assert.IsTrue(_selenium.SetElementTo(SearchBar, "Cheese"), "Set q to Cheese");
     Assert.IsTrue(_selenium.SubmitElement(SearchBar), "Submit");
 }