Selenium Error HELP C#!:System.Reflection.TargetInvocationException:OpenQA.Selenium.WebDriverException:

时间:2018-08-02 04:19:26

标签: c# selenium specflow

有人可以帮助解决这个硒错误吗?

我有一个C#解决方案,仅具有一个Specflow功能,并且只有一个测试,可以使用Chrome驱动程序导航到一个网址。

当我运行唯一的测试时,它会打开Chrome,但不会转到URL,它会抛出该错误:(

代码段

namespace MotorClaims.AcceptanceTests.Steps
{
[Binding]
public class Steps
{
    public IWebDriver webDriver;
    public Steps()
    {
           webDriver = new ChromeDriver();
    }

    [Given(@"I am at the motor claim homepage")]
    public void GivenIAmAtTheMotorClaimHomepage()
    {
        webDriver.Navigate().GoToUrl("https://XXXXXXX");
    }

1 个答案:

答案 0 :(得分:1)

谢谢大家,我找到了解决该问题的方法。那是我的Chrome驱动程序的版本。我不得不从2.40降级到2.37。 :)。

似乎最新版本的Chrome驱动程序在Chrome浏览器64.0.3中有问题