好的,因为你们很多人都知道网络驱动程序测试人员知道Firefox 47的发布打破了Webdriver.FirefoxDriver。我能找到的所有文档告诉我,新的FirefoxDriver是Marionette。
所以我从https://github.com/mozilla/geckodriver/releases下载了最新的可执行文件 重命名为wires.exe并移入我的测试目录。
这是我的设置方法
[TestFixture("chrome")]
[TestFixture("firefox")]
//[TestFixture("internet explorer")]
[Category("ExistingUser")]
public class ExistingUserTestSuite
{
public string browser;
public IWebDriver Driver { get; set; }
public UserInfo User { get; set; }
private static readonly log4net.ILog log = log4net.LogManager.GetLogger("ExistingUserTest");
public ExistingUserTestSuite(string browser)
{
this.browser = browser;
}
[OneTimeSetUp]
public void SetUp()
{
switch (browser)
{
case "chrome":
Driver = new ChromeDriver();
break;
case "firefox":
FirefoxOptions op1 = new FirefoxOptions();
op1.IsMarionette = true;
op1.AddAdditionalCapability("marionette", true);
Driver = new FirefoxDriver(op1);
break;
当我尝试运行时,我得到以下异常。我可以看到,当我开始测试时,wire.exe进程正在进程资源管理器中运行。
Test Name: ChangePlan
Test FullName: POMAuctivaTest.TestSuite.ExistingUserTestSuite("firefox").ChangePlan
Test Source: c:\git\POMAuctivaTest\POMAuctivaTest.TestSuite\ExistingUserTestSuite.cs : line 359
Test Outcome: Failed
Test Duration: 0:00:00.0000001
Result Message: OneTimeSetUp: System.InvalidOperationException : entity not found
这是生成异常的堆栈跟踪
at OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Response errorResponse)
at OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String driverCommandToExecute, Dictionary`2 parameters)
at OpenQA.Selenium.Remote.RemoteWebDriver.StartSession(ICapabilities desiredCapabilities)
at OpenQA.Selenium.Remote.RemoteWebDriver..ctor(ICommandExecutor commandExecutor, ICapabilities desiredCapabilities)
at OpenQA.Selenium.Firefox.FirefoxDriver..ctor(FirefoxDriverService service, FirefoxOptions options, TimeSpan commandTimeout)
at OpenQA.Selenium.Firefox.FirefoxDriver..ctor(FirefoxOptions options)
at POMAuctivaTest.TestSuite.ExistingUserTestSuite.SetUp() in c:\git\POMAuctivaTest\POMAuctivaTest.TestSuite\ExistingUserTestSuite.cs:line 56
我看到的大多数建议都是关于确保更新系统路径。我觉得这不是这种情况,好像我从test / bin / debug文件夹中删除了wire.exe,我得到以下异常。
Test Name: ChangePlan
Test FullName: POMAuctivaTest.TestSuite.ExistingUserTestSuite("firefox").ChangePlan
Test Source: c:\git\POMAuctivaTest\POMAuctivaTest.TestSuite\ExistingUserTestSuite.cs : line 359
Test Outcome: Failed
Test Duration: 0:00:00.0000001
Result Message: OneTimeSetUp: OpenQA.Selenium.DriverServiceNotFoundException : The wires.exe file does not exist in the current directory or in a directory on the PATH environment variable. The driver can be downloaded at https://github.com/jgraham/wires/releases.
这告诉我,我找到了驱动程序但由于某种原因无法创建FirefoxDriver()
的实例。
不知道该怎么做,任何帮助都会很好。
答案 0 :(得分:2)
在感觉像是一场疯狂的鹅狩猎之后,我在geckodriver github页面上的一个开放问题中找到了这个小宝石。我已经确认这已解决了我的问题,现在我可以创建一个firefox驱动程序实例并成功打开Firefox 47. https://github.com/mozilla/geckodriver/issues/91
如果链接失效,以下是上述网址代码的片段
FirefoxDriverService service = FirefoxDriverService.CreateDefaultService();
service.FirefoxBinaryPath = @"C:\Program Files (x86)\Mozilla Firefox\firefox.exe";
IWebDriver driver = new FirefoxDriver(service);
希望这有助于他人。但是有一个错误,目前是我所有测试的阻塞问题。我的所有测试都访问我们的内部测试环境,这些环境都有自签名的证书,而且有一个错误,你无法处理这些问题。 https://bugzilla.mozilla.org/show_bug.cgi?id=1103196
=(