首页 文章

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

提问于
浏览
4

我正在使用Selenium 2.53.0 Java,Tor 6.0.4和Firefox 43.我正在使用firefox执行tor,方法是使用firefox.exe加载带有Firefoxprofile()和Firefoxbinary()的profile.default存档 . 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

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

    尝试以下:

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

相关问题