在Windows 7中使用C#运行Selenium测试时出现“IEDriverServer不存在”错误

前端之家收集整理的这篇文章主要介绍了在Windows 7中使用C#运行Selenium测试时出现“IEDriverServer不存在”错误前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在使用带有C#的WebDriver开发Automation框架。它与Firefox一起工作正常,但不适用于IE。

我收到以下错误

IEDriverServer.exe does not exist-The file c:\users\administrator\documents\visual studio 2010\projects\TestProject1\TestProject1\bin\Debug\IEDriverServer.exe does not exist. The driver can be downloaded at 07000

我使用的是IE 9和Windows 7。

IWebDriver driver = new InternetExplorerDriver();
driver.Navigate().GoToUrl("http://www.google.co.uk");
IWebElement queryBox = driver.FindElement(By.Name("q"));
queryBox.SendKeys("The Automated Tester");
queryBox.SendKeys(Keys.ArrowDown);
queryBox.Submit();

也可以看看 。

Per Jim Evans(曾在IEDriverServer工作)

The .NET bindings don’t scan the %PATH% environment variable for the
executable. That means for the .NET bindings only,the
IEDriverServer.exe is expected to either be found in the same
directory as the .NET bindings assembly,or you must specify the
directory where it can be found in the constructor to the
InternetExplorerDriver class.

Failure to do one of these things (or to
set the UseInternalServer property in the InternetExplorerOptions
class) will cause the .NET IE driver implementation to throw an
exception. This is strictly by design,as we want people to begin
using the standalone IEDriverServer.exe,and the ability to use an
“internal” or “legacy” version of the server will be removed in a
future release.

https://groups.google.com/forum/?fromgroups#!topic/webdriver/EvTyEPYchxE

原文链接:https://www.f2er.com/windows/372290.html

猜你在找的Windows相关文章