本文介紹了用于硒測試的Chrome移動模擬器-不能使用所有設備的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!
問題描述
我正在使用Chrome驅動程序及其仿真器為移動設備進行Selify Java測試。問題是,我不能使用最先進的移動設備,如iPhone7,8等–盡管當我在DevTool中手動測試時,它在我的下拉列表中。
這是驅動程序初始化。這與許多移動設備完美配合:
if(browser.equalsIgnoreCase("mobileIPhone6")){
Map<String, String> mobileEmulation = new HashMap<String, String>();
mobileEmulation.put("deviceName", "iPhone 6");
String exePathChromeDriver = Consts.chromeDriverPath;
System.setProperty("webdriver.chrome.driver", exePathChromeDriver);
PropertyLoader.loadCapabilities();
ChromeOptions chromeOptions = new ChromeOptions();
chromeOptions.setExperimentalOption("mobileEmulation", mobileEmulation);
driver = new ChromeDriver(chromeOptions);
但是,當我將第3行更改為”iPhone 7″時,我收到以下錯誤:
2018-03-16 21:25:49 INFO LogLog4j:210 - org.openqa.selenium.WebDriverException: unknown error: cannot parse capability: chromeOptions
from unknown error: cannot parse mobileEmulation
from unknown error: 'iPhone 7' must be a valid device
from unknown error: must be a valid device
你知道為什么嗎?非常感謝
推薦答案
我已找到解決方案,現在工作正常。我必須首先設置Device Metrics對象:
...else if(browser.equalsIgnoreCase("iPhone678")){
String exePathChromeDriver = Consts.chromeDriverPath;
System.setProperty("webdriver.chrome.driver", exePathChromeDriver);
Map<String, Object> deviceMetrics = new HashMap<>();
deviceMetrics.put("width", 375);
deviceMetrics.put("height", 667);
deviceMetrics.put("pixelRatio", 2.0);
Map<String, Object> mobileEmulation = new HashMap<>();
mobileEmulation.put("deviceMetrics", deviceMetrics);
mobileEmulation.put("userAgent", "Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.34 (KHTML, like Gecko) Version/11.0 Mobile/15A5341f Safari/604.1");
ChromeOptions chromeOptions = new ChromeOptions();
chromeOptions.setExperimentalOption("mobileEmulation", mobileEmulation);
driver = new ChromeDriver(chromeOptions); }
這篇關于用于硒測試的Chrome移動模擬器-不能使用所有設備的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,