有時候爲了測試須要,可能須要使用測試手機wap這樣的站點,若是用真正的手機去測試也能夠實現,可是比較麻煩,咱們能夠經過設置chrome的user agent來假裝瀏覽器,達到咱們的測試目的。web
代碼以下:chrome
public static void main(String[] args) { //設置webdriver.chrome.driver屬性 System.setProperty("webdriver.chrome.driver", "d:/driver/chromedriver.exe"); //聲明chromeoptions,主要是給chrome設置參數 ChromeOptions options = new ChromeOptions(); //設置user agent爲iPhone5 options.addArguments("--user-agent=Apple Iphone 5"); //實例化chrome對象,並加入選項 WebDriver driver = new ChromeDriver(options); //打開百度 driver.get("https://www.baidu.com"); try{ Thread.sleep(5000); }catch(InterruptedException e) { e.printStackTrace(); } driver.quit(); }