selenium使用Google瀏覽器內建手機模擬器運行H5網頁

來源:互聯網
上載者:User

標籤:rom   int   sources   hash   邏輯   object   網路   效果   one   

背景:最開始用手機類比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("使用瀏覽器,進入到了百度頁面");    }

 

效果

 

selenium使用Google瀏覽器內建手機模擬器運行H5網頁

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.