25

因为 Tor Browser Bundle 只是 Firefox 的一个补丁版本,似乎应该可以FirefoxDriver与 Tor Browser 一起使用。这是我迄今为止尝试过的:

String torPath = "C:\\Users\\My User\\Desktop\\Tor Browser\\Start Tor Browser.exe";
String profilePath = "C:\\Users\\My User\\Desktop\\Tor Browser\\Data\\Browser\\profile.default";
FirefoxProfile profile = new FirefoxProfile(new File(profilePath));
FirefoxBinary binary = new FirefoxBinary(new File(torPath));
FirefoxDriver driver = new FirefoxDriver(binary, profile);
driver.get("http://www.google.com");

这会导致打开一个空白的 Tor 浏览器页面并弹出一条消息:无法加载您的 Firefox 配置文件。它可能丢失或无法访问。

我知道配置文件是有效/兼容的,因为我可以成功启动浏览器和配置文件:

binary.startProfile(profile, profilePath, ""));

但是,我不知道如何向以这种方式打开的浏览器发送命令。

我发现了类似的问题,但我专门寻找 Java 解决方案,最好在 Windows 上进行测试。

我正在使用可以在此处下载的独立 Selenium 库和可以在此处下载Tor Browser Bundle 。

4

5 回答 5

19

因为 Tor Browser Bundle 不允许我使用 WebDriver 扩展,所以我找到了一种解决方法,可以从常规的 Firefox 浏览器运行 Tor。使用这种方法,只要打开 Tor 浏览器,您就可以将 Tor 与普通的 Firefox 浏览器一起使用。

  • 打开 Tor 浏览器

    File torProfileDir = new File(
            "...\\Tor Browser\\Data\\Browser\\profile.default");
    FirefoxBinary binary = new FirefoxBinary(new File(
            "...\\Tor Browser\\Start Tor Browser.exe"));
    FirefoxProfile torProfile = new FirefoxProfile(torProfileDir);
    torProfile.setPreference("webdriver.load.strategy", "unstable");
    
    try {
        binary.startProfile(torProfile, torProfileDir, "");
    } catch (IOException e) {
        e.printStackTrace();
    }
    
  • 使用一些配置打开 Firefox :

    FirefoxProfile profile = new FirefoxProfile();
    profile.setPreference("network.proxy.type", 1);
    profile.setPreference("network.proxy.socks", "127.0.0.1");
    profile.setPreference("network.proxy.socks_port", 9150);
    FirefoxDriver = new FirefoxDriver(profile);
    
  • 关闭浏览器。请注意,如果您计划进行大量关闭和重新打开(有助于获取新 IP 地址),我建议将配置文件首选项设置 toolkit.startup.max_resumed_crashes为较高的值,例如9999.

    private void killFirefox() {
        Runtime rt = Runtime.getRuntime();
    
        try {
            rt.exec("taskkill /F /IM firefox.exe");
            while (processIsRunning("firefox.exe")) {
                Thread.sleep(100);
            }
        } catch (Exception e) {
            e.printStackTrace();
        }
    }
    
    private boolean processIsRunning(String process) {
        boolean processIsRunning = false;
        String line;
        try {
            Process proc = Runtime.getRuntime().exec("wmic.exe");
            BufferedReader input = new BufferedReader(new InputStreamReader(proc.getInputStream()));
            OutputStreamWriter oStream = new OutputStreamWriter(proc.getOutputStream());
            oStream.write("process where name='" + process + "'");
            oStream.flush();
            oStream.close();
            while ((line = input.readLine()) != null) {
                if (line.toLowerCase().contains("caption")) {
                    processIsRunning = true;
                    break;
                }
            }
            input.close();
        } catch (IOException e) {
            e.printStackTrace();
        }
        return processIsRunning;
    }
    
于 2014-04-27T07:23:42.540 回答
3

我会尝试指定现有配置文件之一的路径并为 Tor 初始化您的配置文件实例,以便您的代码看起来像:

String torPath = "..\\Tor Browser\\Browser\\firefox.exe";
String profilePath = "..\\Tor Browser\\Data\Browser\\profile.default";
FirefoxProfile profile = new FirefoxProfile(new File(profilePath));
FirefoxBinary binary = new FirefoxBinary(new File(torPath));
FirefoxDriver driver = new FirefoxDriver(binary, profile);
driver.get("http://www.google.com");

我没有尝试这个,因为我家里没有 WebDriver 设置,但这应该允许你指定一个配置文件。

于 2014-04-10T04:34:58.677 回答
2

我下载了 TorBrowser,并且可以使用以下代码(它是 Mac OS)毫无问题地调用它。所以我认为firefox webdriver和最新版本的Tor浏览器之间的兼容性应该没有问题。

String torPath = "/Volumes/DATA/Downloads/Tor.app/Contents/MacOS/TorBrowser.app/Contents/MacOS/firefox";
String profilePath = "/Users/mimitantono/Library/Application Support/Firefox/Profiles/1vps9kas.default-1384778906995";
FirefoxProfile profile = new FirefoxProfile(new File(profilePath));
FirefoxBinary binary = new FirefoxBinary(new File(torPath));
FirefoxDriver driver = new FirefoxDriver(binary, profile);
driver.get("http://www.google.com/webhp?complete=1&hl=en");

我知道您已经测试了配置文件的路径,binary.startProfile但我认为您可以再次尝试使用斜杠而不是反斜杠来指定路径,交叉检查该文件是否存在 -> profile.default,并使用绝对路径而不是相对路径 -> ../

于 2014-04-19T12:38:09.773 回答
1

这段代码在 ubuntu 中也运行良好。这是一个示例(JUnit4):

package qa2all;

import java.io.File;
import java.util.concurrent.TimeUnit;

import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.firefox.FirefoxBinary;
import org.openqa.selenium.firefox.FirefoxDriver;
import org.openqa.selenium.firefox.FirefoxProfile;


public class HTMLUnit {
    private WebDriver driver;
    private String baseUrl;
    private StringBuffer verificationErrors = new StringBuffer();

    @Before
    public void setUp() throws Exception {
        //driver = new HtmlUnitDriver();    
        //driver = new FirefoxDriver();
        String torPath = "/home/user/Dropbox/Data/TorBrowser/Linux/32/start-tor-browser";
        String profilePath = "/home/user/Dropbox/Data/TorBrowser/Linux/32/TorBrowser/Data/Browser/profile.default/";
        FirefoxProfile profile = new FirefoxProfile(new File(profilePath));
        FirefoxBinary binary = new FirefoxBinary(new File(torPath));
        driver = new FirefoxDriver(binary, profile);        
        baseUrl = "https://qa2all.wordpress.com";
        driver.manage().timeouts().implicitlyWait(30, TimeUnit.SECONDS);
    }

    @Test
    public void testUntitled() throws Exception {
        driver.get(baseUrl + "/");

    }

    @After
    public void tearDown() throws Exception {
        driver.quit();
        String verificationErrorString = verificationErrors.toString();
        if (!"".equals(verificationErrorString)) {
            fail(verificationErrorString);
        }
    }

    private void fail(String verificationErrorString) {
        // TODO Auto-generated method stub

    }
}
于 2015-08-05T08:15:08.787 回答
0

如果您最关心使用 Tor 远程控制浏览器(并且可能更喜欢使用 Tor 浏览器而不是原版 Firefox),您可以使用 Mozilla 的Marionette。使用喜欢

要与 Tor 浏览器一起使用,请在启动时通过以下方式启用木偶

Browser/firefox -marionette

(在捆绑包内)。然后,您可以通过连接

from marionette import Marionette
client = Marionette('localhost', port=2828);
client.start_session()

并加载一个新页面,例如通过

url='http://mozilla.org'
client.navigate(url);

有关更多示例,请参阅教程以及更多文档。

复制

于 2015-09-17T15:14:30.617 回答