运行我的c#Selenium WebDriver代码时出现NUnit错误

前端之家收集整理的这篇文章主要介绍了运行我的c#Selenium WebDriver代码时出现NUnit错误前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在使用Visual Studio编写C#来构建Selenium WebDriver代码,然后通过NUnit传递它来运行我的测试.

当我第一次构建和调试我的代码时,它将传递给NUnit,我可以从那里成功运行(加载正确的浏览器加载正确的网页)

直到最近,每当我尝试在NUnit中运行它时,都会发生运行错误

FirstSeleniumTest.SeleniumTest.TestGoogle:
SetUp : OpenQA.Selenium.WebDriverException : You will need to use add InternetExplorerDriver.UseLegacyInternalServer to the desired capabilities to use the internal native code server library. This functionality will be deprecated in favor of the standalone IEDriverServer.exe server.
  ----> OpenQA.Selenium.DriverServiceNotFoundException : The file C:\Users\lbrown\Documents\Visual Studio 2010\Projects\ClassLibrary15\ClassLibrary15\bin\Debug\IEDriverServer.exe does not exist. The driver can be downloaded at http://code.google.com/p/selenium/downloads/list
TearDown : System.NullReferenceException : Object reference not set to an instance of an object.

我下载了它告诉我的驱动程序,但我不确定接下来要做什么,或者把它放在我的代码中.

解决方法

解压缩驱动程序,并将其放在运行测试的文件夹中.将其添加到Visual Studio中的项目,确保其构建属性设置为“始终复制”.这将确保始终将其复制到与包含测试的已编译.DLL文件相同的构建目录.

您可以稍后移动它,但当它与测试位于同一文件夹中时可以使其工作.

原文链接:https://www.f2er.com/c/119078.html

猜你在找的C&C++相关文章