Tor Browser Bundleは、Firefoxのパッチを適用したバージョンであるため、Tor BrowserでFirefoxDriver
を使用できるはずです。これは私がこれまでに試したことです:
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ライブラリ here とダウンロード可能なTor Browser Bundle here を使用しています。
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;
}
既存のプロファイルの1つのパスを指定して、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をセットアップしていないのでこれを試しませんでしたが、これでプロファイルを指定できるようになります。
TorBrowserをダウンロードして、次のコード(Mac OS)で問題なく呼び出すことができました。したがって、Firefox Webドライバーと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
、相対パスではなく絶対パスを使用する-> ../
。
このコードは、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
}
}
Torを使用してブラウザーをリモート制御することにほとんど関心がある場合(そして、おそらくバニラFirefoxの代わりにTorブラウザーを使用したい場合)、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);
その他の例については、 tutorial とその他のドキュメントがあります。
( コピー )