0

我正在尝试通过 Selenium 自动测试 Tor 浏览器,但到目前为止我还不能让它工作。我所有的尝试都是以下代码的某种变体:

FirefoxProfile profile = new FirefoxProfile(new File("/Users/MyUsername/Library/Application Support/TorBrowser-Data/Browser/x1v4coki.default"));
profile.setPreference("webdriver.load.strategy", "unstable");
profile.setPreference("network.proxy.type", 1);
profile.setPreference("network.proxy.socks", "127.0.0.1");
profile.setPreference("network.proxy.socks_port", 9150);
FirefoxBinary binary = new FirefoxBinary(new File("/Applications/TorBrowser.app/Contents/MacOS/firefox"));
FirefoxOptions options = new FirefoxOptions();
options.setBinary(binary);
options.setProfile(profile);
FirefoxDriver driver = new FirefoxDriver(options);

当最后一行被执行时,Tor 浏览器就成功启动了。但是,程序会挂起一分钟左右,最终会抛出以下异常:

Exception in thread "main" org.openqa.selenium.WebDriverException: connection refused
Build info: version: '3.6.0', revision: '6fbf3ec767', time: '2017-09-27T15:28:36.4Z'
System info: host: '...', ip: '...', os.name: 'Mac OS X', os.arch: 'x86_64', os.version: '10.12.6', java.version: '1.8.0_144'
Driver info: driver.version: FirefoxDriver

当我省略这些行时,也会引发相同的异常profile.setPreference(...)。我正在使用 Tor 浏览器 7.0.8、geckodriver 0.19.0 和 Selenium 3.6。

有人可以帮我找出导致异常的原因吗?

4

1 回答 1

0

使用 geckodriver 0.18.0 而不是 0.19.0 解决了我的问题。

于 2017-11-03T14:21:18.550 回答