将Firefox与WebDriver一起使用时出现错误。
org.openqa.selenium.firefox.NotConnectedException: Unable to connect
to host 127.0.0.1 on port 7055 after 45000 ms.
- Firefox版本:47.0
- 硒:2.53.0
- Windows 10 64位
是否有人遇到类似问题或任何想法,对此有什么解决方案?在Chrome上运行正常,但在Firefox上未加载任何URL。
将Firefox与WebDriver一起使用时出现错误。
org.openqa.selenium.firefox.NotConnectedException: Unable to connect
to host 127.0.0.1 on port 7055 after 45000 ms.
是否有人遇到类似问题或任何想法,对此有什么解决方案?在Chrome上运行正常,但在Firefox上未加载任何URL。
Answers:
不幸的是,Selenium WebDriver 2.53.0与Firefox 47.0不兼容。处理Firefox浏览器(FirefoxDriver
)的WebDriver组件将停止使用。从3.0版开始,Selenium WebDriver将需要geckodriver
二进制文件来管理Firefox浏览器。更多信息在这里和这里。
因此,为了将Firefox 47.0用作带有Selenium WebDriver 2.53.0的浏览器,您需要下载Firefox驱动程序(该文件geckodriver
是从0.8.0版开始的二进制文件,以前是wires
),并将其绝对路径导出webdriver.gecko.driver
为Java代码中的系统属性:
System.setProperty("webdriver.gecko.driver", "/path/to/geckodriver");
幸运的是,库WebDriverManager可以为您完成此工作,即为您的计算机(Linux,Mac或Windows)下载正确的Marionette二进制文件并导出正确的系统属性的值。要使用此库,您需要在项目中包括此依赖项:
<dependency>
<groupId>io.github.bonigarcia</groupId>
<artifactId>webdrivermanager</artifactId>
<version>4.1.0</version>
</dependency>
...然后在使用WebDriver之前在程序中执行以下行:
WebDriverManager.firefoxdriver().setup();
使用WebDriver的JUnit 4测试用例的完整运行示例如下:
public class FirefoxTest {
protected WebDriver driver;
@BeforeClass
public static void setupClass() {
WebDriverManager.firefoxdriver().setup();
}
@Before
public void setupTest() {
driver = new FirefoxDriver();
}
@After
public void teardown() {
if (driver != null) {
driver.quit();
}
}
@Test
public void test() {
// Your test code here
}
}
考虑到木偶将是未来的唯一选择(对于WebDriver 3+和Firefox 48+),但目前(编写时的0.9.0版)不是很稳定。请查看木偶路线图,以了解更多详细信息。
更新
Selenium WebDriver 2.53.1已于2016年6月30日发布。FirefoxDriver
再次使用Firefox 47.0.1作为浏览器。
C:\Windows\system32>netstat -ano | find "7055" TCP 127.0.0.1:2896 127.0.0.1:7055 SYN_SENT 2052
尝试使用Firefox 46.0.1。与Selenium 2.53最匹配
https://ftp.mozilla.org/pub/firefox/releases/46.0.1/win64/en-US/
我遇到了同样的问题,发现由于支持被取消,您需要切换驱动程序 。除了运行Firefox驱动程序外,您还需要使用Marionette驱动程序来运行测试。我目前正在自己完成设置,如果您有一个可行的示例,可以发布一些建议的步骤。
这是我在Mac上的Java环境上运行时遵循的步骤(在我的Linux安装(Fedora,CentOS和Ubuntu)中也为我工作):
mkdir -p /opt/marionette
)$PATH
的文件以包含可执行文件(.bash_profile
如果需要,还可以编辑文件)chmod +x /opt/marionette/wires-x.x.x
可执行快速说明
仍然无法按预期运行,但至少现在启动了浏览器。需要弄清楚原因-现在看来我需要重写测试才能使其正常工作。
Java代码段
WebDriver browser = new MarionetteDriver();
System.setProperty("webdriver.gecko.driver", "/opt/marionette/wires-0.7.1-OSX");
如果使用Homebrew在OSX上,则可以通过brew cask安装旧的Firefox版本:
brew tap goldcaddy77/firefox
brew cask install firefox-46 # or whatever version you want
安装后,只需要将Applications目录中的FF可执行文件重命名为“ Firefox”。
可以在git repo homebrew-firefox上找到更多信息。支持smclernon创建原始桶。
万一有人想知道如何在C#中使用木偶。
FirefoxProfile profile = new FirefoxProfile(); // Your custom profile
var service = FirefoxDriverService.CreateDefaultService("DirectoryContainingTheDriver", "geckodriver.exe");
// Set the binary path if you want to launch the release version of Firefox.
service.FirefoxBinaryPath = @"C:\Program Files\Mozilla Firefox\firefox.exe";
var option = new FirefoxProfileOptions(profile) { IsMarionette = true };
var driver = new FirefoxDriver(
service,
option,
TimeSpan.FromSeconds(30));
覆盖FirefoxOptions以提供添加其他功能并设置Firefox配置文件的功能,因为selenium v53尚不提供该功能。
public class FirefoxProfileOptions : FirefoxOptions
{
private DesiredCapabilities _capabilities;
public FirefoxProfileOptions()
: base()
{
_capabilities = DesiredCapabilities.Firefox();
_capabilities.SetCapability("marionette", this.IsMarionette);
}
public FirefoxProfileOptions(FirefoxProfile profile)
: this()
{
_capabilities.SetCapability(FirefoxDriver.ProfileCapabilityName, profile.ToBase64String());
}
public override void AddAdditionalCapability(string capabilityName, object capabilityValue)
{
_capabilities.SetCapability(capabilityName, capabilityValue);
}
public override ICapabilities ToCapabilities()
{
return _capabilities;
}
}
注意:使用配置文件启动不适用于FF 47,但适用于FF 50 Nightly。
但是,我们尝试将测试转换为使用Marionette,但由于驱动程序的实现未完成或有故障,因此目前尚不可行。我建议人们此时将其Firefox降级。
根据以下网址,新的Selenium库现已发布:https : //github.com/SeleniumHQ/selenium/issues/2110
下载页面http://www.seleniumhq.org/download/似乎尚未更新,但是通过在链接的次要版本中添加1,我可以下载C#版本:http:// selenium-release。 storage.googleapis.com/2.53/selenium-dotnet-2.53.1.zip
它适用于Firefox 47.0.1。
附带说明一下,我可以通过运行GitHub从master分支仅构建webdriver.xpi Firefox扩展,./go //javascript/firefox-driver:webdriver:run
它给出了错误消息,但确实构建了build / javascript / firefox-driver / webdriver.xpi文件,可以重命名(以避免名称冲突)并成功使用FirefoxProfile.AddExtension方法加载。这是一个合理的解决方法,而无需重建整个Selenium库。
它是FF47问题 https://github.com/SeleniumHQ/selenium/issues/2110
请降级至FF 46或以下(或尝试使用FF48开发人员https://developer.mozilla.org/en-US/Firefox/Releases/48)
:如何降级说明 https://www.liberiangeek.net/2012/04/how-to-install-previous-versions-of-firefox-in-ubuntu-12-04-precise-pangolin/ 或者如果你是在Mac上,如该线程中的其他人所建议,请使用brew。
Firefox 47.0停止使用Webdriver。
最简单的解决方案是切换到Firefox 47.0.1和Webdriver 2.53.1。此组合再次有效。实际上,根据https://www.mozilla.org/en-US/firefox/47.0.1/releasenotes/,恢复Webdriver兼容性是47.0.1版本背后的主要原因。
您可以尝试使用此代码,
private WebDriver driver;
System.setProperty("webdriver.firefox.marionette","Your path to driver/geckodriver.exe");
driver = new FirefoxDriver();
我升级到硒3.0.0,而Firefox版本是49.0.1
您可以从https://github.com/mozilla/geckodriver/releases下载geckodriver.exe
确保根据系统仅下载zip文件,geckodriver-v0.11.1-win64.zip文件或win32,并将其解压缩到文件夹中。
将文件夹的路径放在“您的驱动程序路径”引号中。不要忘记将geckodriver.exe放在路径中。
我最终安装了另一个旧版本的Firefox(仅用于测试)以解决此问题,除了我的常规(安全,最新)最新Firefox安装之外。
这需要webdriver知道可以在哪里找到Firefox二进制文件,可以通过该webdriver.firefox.bin
属性进行设置。
对我有用的(mac,maven,/tmp/ff46
作为安装文件夹)是:
mvn -Dwebdriver.firefox.bin=/tmp/ff46/Firefox.app/Contents/MacOS/firefox-bin verify
要将旧版本的Firefox安装在专用文件夹中,请创建该文件夹,在该文件夹中打开Finder,下载Firefox dmg,然后将其拖到该Finder中。
在我看来,最好的解决方案是更新到Selenium 3.0.0,下载geckodriver.exe并使用Firefox 47或更高版本。
我将Firefox初始化更改为:
string geckoPathTest = Path.Combine(Environment.CurrentDirectory, "TestFiles\\geckodriver.exe");
string geckoPath = Path.Combine(Environment.CurrentDirectory, "geckodriver.exe");
File.Copy(geckoPathTest, geckoPath);
Environment.SetEnvironmentVariable("webdriver.gecko.driver", geckoPath);
_firefoxDriver = new FirefoxDriver();
我可以确认它selenium 2.53.6
可以firefox 44
在ubuntu 15上使用。