Because Tor Browser Bundle is just a patched version of Firefox, it seems that it should be possible to use a FirefoxDriver
with Tor Browser. This is what I've tried so far:
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");
This results in a blank Tor Browser page opening with a popup message: Your Firefox profile cannot be loaded. It may be missing or inaccessible.
I know that the profile is valid/compatible because I can successfully start the browser and profile with:
binary.startProfile(profile, profilePath, ""));
I don't know how to send commands to a browser opened in such a manner, however.
I've found similar questions, but I'm specifically looking for a Java solution, preferably tested on Windows.
I'm using a standalone Selenium library that can be downloaded here and the Tor Browser Bundle that can be downloaded here.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…