如何使用 Selenium 运行 Tor 浏览器?
How to run the Tor Browser with Selenium?
我正在尝试通过 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。
谁能帮我找出导致异常的原因?
使用 geckodriver 0.18.0 而不是 0.19.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。
谁能帮我找出导致异常的原因?
使用 geckodriver 0.18.0 而不是 0.19.0 解决了我的问题。