首页 > 代码库 > 如何使用selenium 驱动chrome浏览器并且打开方式为手机模式
如何使用selenium 驱动chrome浏览器并且打开方式为手机模式
随着移动设备使用率的不断增加,移动页面的测试也变得越来越重要。
对于互联网公司M站的测试,如果不通过专用的appium等移动端测试工具是否还有方便快捷的办法呢?答案当然是有啊。
使用chrome driver和chrome浏览器并进入chrome的 toggle device mode 模式,就可以很好的模拟手机端,下面直接上代码。
public class Test{ public static void main(String args[]) { System.setProperty("webdriver.chrome.driver", "E:/Software/自动化软件/chromedriver.exe"); Map<String, String> mobileEmulation = new HashMap<String, String>(); mobileEmulation.put("deviceName", "Google Nexus 5"); Map<String, Object> chromeOptions = new HashMap<String, Object>(); chromeOptions.put("mobileEmulation", mobileEmulation); DesiredCapabilities capabilities = DesiredCapabilities.chrome(); capabilities.setCapability(ChromeOptions.CAPABILITY, chromeOptions); WebDriver driver = new ChromeDriver(capabilities); Navigation navigation=driver.navigate(); navigation.to("https://m.baidu.com/"); String title=driver.getTitle(); System.out.println("title:"+title); } }
说一下我使用的chrome版本和chromedriver版本,这两个如果配合不好会有坑。
Chrome version:
Chrome driver:
去这个地方 http://chromedriver.storage.googleapis.com/index.html 打不开自己想办法吧,哈哈,下载2.15版本 我是windows平台,下载的32那个,这样selenium每次打开浏览器就是手机模式了,可以操作对手机方面的一些测试。
如何使用selenium 驱动chrome浏览器并且打开方式为手机模式
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。