• selenium使用谷歌浏览器自带手机模拟器运行H5网页


    背景:最开始用手机模拟H5页面跑自动化,发现经常因为app连接或者网络原因等一系列情况,导致M版(H5页面)用例跑不通,想通过浏览器自带的手机模拟器运行,保证稳定性

    浏览器自带的模拟器如下图:

    代码实现逻辑

    public class runtest {
        WebDriver driver;
        @BeforeClass
        public void beforeClass(){
            System.setProperty("webdriver.chrome.driver", "resources/chromedriver.exe");
            Map<String, String> mobileEmulation = new HashMap<String, String>();
            //设置设备,例如:Google Nexus 7/Apple iPhone 6
            //mobileEmulation.put("deviceName", "Google Nexus 7"); 
            mobileEmulation.put("deviceName", "Apple iPhone 6 Plus");   //这里是要使用的模拟器名称,就是浏览器中模拟器中的顶部型号
            Map<String, Object> chromeOptions = new HashMap<String, Object>();     
            chromeOptions.put("mobileEmulation", mobileEmulation);     
            DesiredCapabilities capabilities = DesiredCapabilities.chrome();       
            capabilities.setCapability(ChromeOptions.CAPABILITY, chromeOptions);
            try {
                System.out.println("开始启动driver~~~");
                driver = new ChromeDriver(capabilities);
                System.out.println("启动driver成功~~~");
            } catch (Exception e) {
                System.out.println("启动driver失败~~~");
                System.out.println(e.getMessage());
            }        
        }
        
         
        @Test
        public void run(){        
            driver.get("http://m.baidu.com/");
            System.out.println("使用浏览器,进入到了百度页面");
        }

    效果如图:

  • 相关阅读:
    大道至简阅读笔记01
    3.2-3.8 第三周总结
    全国疫情统计可视化地图 01
    数据爬取
    全国疫情统计可视化地图
    第3周总结
    第2周总结
    开课博客
    数组
    从小工到专家 读后感2
  • 原文地址:https://www.cnblogs.com/chongyou/p/7424180.html
Copyright © 2020-2023  润新知