好得很程序员自学网

<tfoot draggable='sEl'></tfoot>

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测试数据')driver.find_element_by_css_selector('#index-kw').send_keys('test')

  注意id 是 ‘index-kw’

?

执行结果:

?

查看更多关于python selenium 模拟手机浏览器的详细内容...

  阅读:36次