使用Selenium WebDriver启动TOR浏览器时出错

时间:2016-08-25 00:54:15

标签: java selenium firefox tor

我正在使用Selenium 2.53.0 Java,Tor 6.0.4和Firefox 43.我通过使用Firefoxprofile()和Firefoxbinary()加载profile.default存档来使用firefox执行tor。 firefox.exe。 Tor启动,但它没有启动,它显示两个错误:无法连接到Tor控制端口,Tor无法启动。

我已将此帖发布到Using Selenium WebDriver with Tor以设置Firefox驱动程序。

见下面的代码。谢谢!

String torPath = "C:\\Users\\Jose Bernhardt\\Desktop\\Tor Browser\\Browser\\firefox.exe";
    String profilePath = "C:\\Users\\Jose Bernhardt\\Desktop\\Tor Browser\\Browser\\TorBrowser\\Data\\Browser\\profile.default";

    File torProfileDir = new File(profilePath);
    FirefoxBinary binary = new FirefoxBinary(new File(torPath));
    FirefoxProfile torProfile = new FirefoxProfile(torProfileDir);
    FirefoxDriver driver = new FirefoxDriver(binary, torProfile);

这些是引发的异常:

org.openqa.selenium.firefox.NotConnectedException: Unable to connect to host 127.0.0.1 on port 7055 after 45000 ms. Firefox console output:
Exception in thread "main" org.openqa.selenium.WebDriverException: Failed to connect to binary FirefoxBinary(C:\Users\Jose Bernhardt\Desktop\Tor Browser\Browser\firefox.exe) on port 7055; process output follows

1 个答案:

答案 0 :(得分:0)

我认为这是因为您使用的是错误版本的firefox驱动程序

尝试以下:

public WebDriver driver;
system.setproperty("webdriver.gecko.driver","path to your firefoxdriver");
driver = new FierfoxDriver();