我真的需要帮助,我是这个领域的新手。
我在 C# 上创建了简单的代码来使用 selenium Lib 打开 Firefox。我已经在 Mono (Xamarin 4.0) 上完成了我的代码。
如果我使用 .Net 运行时构建和运行我的代码,那么一切都运行良好。但是,当我切换到 Mono (3.0.6) 时,我遇到了这个问题:
未处理的异常:OpenQA.Selenium.WebDriverException:无法在 OpenQA.Selenium.Firefox.Internal.ExtensionConnection.ConnectToBrowser (Int6 4 timeToWaitInMilliSeconds) [0x00000] 在 45000 内启动套接字:0
我错过了什么?我应该怎么做才能解决这个问题?谢谢你们的帮助。
编辑
这是我的示例代码:
using System; using OpenQA.Selenium; using OpenQA.Selenium.Firefox; using OpenQA.Selenium.Remote; using OpenQA.Selenium.Support.UI; namespace AutomatedTesting { class MainTest { public static void Main (string[] args) { IWebDriver driver = new FirefoxDriver (); driver.Navigate ().GoToUrl ("http://www.google.com"); } } }