caind123 发表于 2019-5-7 11:55:05

selenium模拟手机操作源代码

import org.openqa.selenium.WebDriver;
import org.openqa.selenium.chrome.ChromeDriver;
import org.openqa.selenium.chrome.ChromeOptions;

/*
* 将chrome浏览器设置成手机模式
*/

public class KeywordBrowserChromeUserAgent {

    public static void main(String[] args) {
      //声明ChromeOptions,主要是给chrome设置参数
      ChromeOptions options = new ChromeOptions();

      //设置user agent为iphone6plus
      options.addArguments("--user-agent=iphone 6 plus");

      //设置webdriver.chrome.driver属性
      System.setProperty("webdriver.chrome.driver", "D:\\work\\chromedriver.exe");

      WebDriver driver = new ChromeDriver(options);

      driver.get("http://www.baidu.com");
    }
}

caind123 发表于 2019-5-7 11:55:34

拿走,不谢

misakii00 发表于 2019-5-7 15:33:50

大佬这个有啥用

caind123 发表于 2019-5-7 18:06:42

misakii00 发表于 2019-5-7 15:33
大佬这个有啥用

就是回复脚本,模拟手机模式

Miss_love 发表于 2020-12-30 16:01:24

看看
页: [1]
查看完整版本: selenium模拟手机操作源代码