Answers for "c# use cefcharp and selenium can?"

C#
0

c# use cefcharp and selenium can?

var service = ChromeDriverService.CreateDefaultService(@"C:\chromedriver");
ChromeOptions chromeOptions = new ChromeOptions();
chromeOptions.AddArgument("--remote-debugging-port=1234");
chromeOptions.BinaryLocation = @"C:\Program Files (x86)\Google\Chrome\Application\chrome.exe";
IWebDriver driver = new ChromeDriver(service, chromeOptions); 
driver.Navigate().GoToUrl("http://www.google.com.com");
driver.Quit();
Posted by: Guest on May-03-2021

Code answers related to "c# use cefcharp and selenium can?"

C# Answers by Framework

Browse Popular Code Answers by Language