使用selenium webdriver自动化网站时,我需要允许地理位置权限继续前进。我无法使用firefox配置文件的功能。
Image of the geo-location pop up
像这样的东西
public static String fileName = "/Users/Arjit/Documents/geoLocation.json";
WebDriver driver;
FirefoxProfile profile = new FirefoxProfile();
profile.setPreference("geo.enabled", true);
profile.setPreference("geo.provider.use_corelocation", true);
profile.setPreference("geo.wifi.uri",newFile(fileName).toURI().toString());
driver = new FirefoxDriver(profile);
driver.get("http://www.zoomcar.com");
geoLocation.json有
{
"status": "OK",
"accuracy": 10.0,
"location": {
"lat": 12.9525060,
"lng": 77.6991510
}
}
答案 0 :(得分:1)
我已经尝试过您的脚本并进行了以下更改,并且有效:
profile.setPreference("geo.prompt.testing", true);
profile.setPreference("geo.prompt.testing.allow", true);
profile.setPreference("geo.wifi.uri", "file:///C:/Users/.../src/main/data/geoLocation.json"); // add absolute path here
driver = new FirefoxDriver(profile);
//driver.get("http://www.zoomcar.com");
driver.get("http://html5demos.com/geo");
P.S。 geoLocation.json和你的一样,但坐标不同。
{
"status": "OK",
"accuracy": 10.0,
"location": {
"lat": 18.976916,
"lng": 73.736801
}
}
答案 1 :(得分:1)
您可以在创建驱动程序时注入Firefox配置文件。
我正在使用Selenium3。如果您正在使用Selenium 2,则可以将配置文件直接传递到驱动程序中。不需要FirefoxOptions。
lat-long-json:我使用了这段代码
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;
}
答案 2 :(得分:0)
对于Selenium 3.0,这将有效。如果您只想使用相同的配置文件。 您还可以通过键入来获取要设置/更改的首选项列表 "关于:配置"在你的firefox的地址栏中按下Enter键。
FirefoxOptions op = new FirefoxOptions();
op.SetPreference("geo.enabled", false);
IWebDriver webDriver = new FirefoxDriver(op);
在这里,我正在关闭每次弹出的地理位置警报,我的测试运行。