我正在尝试打开Chrome并使用Selenium C#WebDriver加载网页。我遇到的问题是,Chrome浏览器会打开并加载页面并立即关闭。
这是我的代码:
//I copied the chromedriver.exe to my project directory
using (var driver = new ChromeDriver(Environment.CurrentDirectory))
{
try
{
//Maximize the browser
driver.Manage().Window.Maximize();
driver.Navigate().GoToUrl("http://www.google.com");
}
catch (TimeoutException te) {
string y = te.Message;
}
catch (Exception ce) {
string k = ce.Message;
}
}
任何解决方法的想法都会有所帮助。