51Testing软件测试论坛
标题:
python selenium 模拟手机浏览器
[打印本页]
作者:
lsekfe
时间:
2018-7-4 14:46
标题:
python selenium 模拟手机浏览器
脚本如下:
from selenium import webdriver
mobile = {'deviceName': 'Apple iPhone 4'} //设置所模拟的硬件
path='C:\\Program Files (x86)\\Google\\Chrome\\Application\\chromedriver.exe'
options = webdriver.ChromeOptions()
options.add_experimental_option('mobileEmulation',mobile)
driver = webdriver.Chrome(path,chrome_options=options)
driver.get('http://m.baidu.com')driver.find_element_by_css_selector('#index-kw').send_keys('test')
复制代码
[attach]116959[/attach]
注意id 是 ‘index-kw’
[attach]116960[/attach]
欢迎光临 51Testing软件测试论坛 (http://bbs.51testing.com/)
Powered by Discuz! X3.2