Skip to content

Open Chrome in mobile mode

Ha Do edited this page Sep 8, 2020 · 3 revisions

Follow Chrome documentation about Mobile Emulator

Map<String, Object> mobileEmulation = new HashMap<>();

mobileEmulation.put("deviceName", "iPad Pro");
        
ChromeOptions opts = new ChromeOptions();
        
opts.setExperimentalOption("mobileEmulation", mobileEmulation);
        
 new ChromeDriver(opts);
Clone this wiki locally