在Mac中使用Selenium WebDriver打开后如何保持Chrome打开

时间:2019-05-02 16:07:53

标签: c# selenium webdriver

我正在尝试打开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;
    }
}

任何解决方法的想法都会有所帮助。

0 个答案:

没有答案