51Testing软件测试论坛
标题:
selenium模拟手机操作源代码
[打印本页]
作者:
caind123
时间:
2019-5-7 11:55
标题:
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
拿走,不谢
作者:
misakii00
时间:
2019-5-7 15:33
大佬这个有啥用
作者:
caind123
时间:
2019-5-7 18:06
misakii00 发表于 2019-5-7 15:33
大佬这个有啥用
就是回复脚本,模拟手机模式
作者:
Miss_love
时间:
2020-12-30 16:01
看看
欢迎光临 51Testing软件测试论坛 (http://bbs.51testing.com/)
Powered by Discuz! X3.2