【发布时间】:2015-02-08 04:37:42
【问题描述】:
我正在尝试使用 Java 中的 Selenium 来获取用户的地理坐标,但使用 IP 地址不够准确,所以我想使用这个网站 http://www.whataremycoordinates.com/,但它不起作用,我猜这是因为您必须允许使用位置,所以无论如何我可以允许在 Selenium 中使用位置,或者可能是其他方式来获取精确的地理坐标
【问题讨论】:
标签: java selenium selenium-webdriver
我正在尝试使用 Java 中的 Selenium 来获取用户的地理坐标,但使用 IP 地址不够准确,所以我想使用这个网站 http://www.whataremycoordinates.com/,但它不起作用,我猜这是因为您必须允许使用位置,所以无论如何我可以允许在 Selenium 中使用位置,或者可能是其他方式来获取精确的地理坐标
【问题讨论】:
标签: java selenium selenium-webdriver
通常,当网站想要获取此类数据时,浏览器会询问您是否要分享您的位置。问题在一个弹出窗口中,无法用selenium 控制。在这种情况下,您需要告诉浏览器,不要打开弹出窗口并允许共享您的位置,这样一开始就不会打开弹出窗口。
对于Firefox,您需要:
about:permissions 以查看设置)FirefoxProfile 指向您之前保存的配置文件启动 Firefox有关详细信息,请参阅:
【讨论】:
您可以在创建驱动程序时注入 firefox 配置文件
我正在使用 selenium 3,如果您使用的是 selenium 2,则不需要 firefoxOptions,您可以直接将配置文件传递给驱动程序。
lat-log-json:How to enable geolocation permissions for a website in firefox profile using selenium webdriver
FirefoxOptions opt = getFirefoxOptions();
WebDriver webDriver = new FirefoxDriver(opt);
//method for fire fox profile//////////////////////////////////
public static FirefoxProfile getFirefoxProfile() {
ProfilesIni profileIni = new ProfilesIni();
FirefoxProfile profile = profileIni.getProfile("webDriverProfile");
System.out.println("profile is null : " + (profile == null));
if (profile == null) {
profile = new FirefoxProfile();
}
profile.setPreference("browser.download.folderList", 2);
profile.setPreference("browser.download.dir", "download/path");
profile.setPreference(
"browser.helperApps.neverAsk.saveToDisk",
"application/pdf,application/octet-stream,"
+ "application/download,text/html,application/xhtml+xml");
profile.setPreference("pdfjs.disabled", true);
// profile.setPreference("dom.webnotifications.enabled", true);
profile.setPreference("geo.enabled", true);
profile.setPreference("geo.provider.use_corelocation", true);
profile.setPreference("geo.prompt.testing", true);
profile.setPreference("geo.prompt.testing.allow", true);
profile.setPreference("geo.wifi.uri", "path-to-loglatjson\\geo-location-ITPL.json");
// profile.setPreference("browser.helperApps.neverAsk.openFile",
// "application/pdf");
// profile.setPreference("browser.helperApps.alwaysAsk.force", false);
/*
* profile.setPreference("browser.download.manager.alertOnEXEOpen",
* false);
* profile.setPreference("browser.download.manager.focusWhenStarting",
* false); profile.setPreference("browser.download.manager.useWindow",
* false);
* profile.setPreference("browser.download.manager.showAlertOnComplete",
* false);
* profile.setPreference("browser.download.manager.closeWhenDone",
* false);
*/
return profile;
}
【讨论】: