1
나는 로봇을 만들고 있으므로 Tor를 사용하고 싶다. 더, 나는 선택한 Geoloaction이나 Country로 Ip를 설정하고 싶다. 이것이 가능한가? Heres는GeoLocation에 Tor IP를 어떻게 설정할 수 있습니까?
내 토르 초기화 코드
public static void setUp() throws Exception {
//driver = new HtmlUnitDriver();
//driver = new FirefoxDriver();
String torPath = "/Applications/TorBrowser.app/Contents/MacOS/firefox";
String profilePath = "/Applications/TorBrowser.app/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);
}
고마워요 선생님! –