python selenium Chrome 设置为手机模式

Posted chukun

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python selenium Chrome 设置为手机模式相关的知识,希望对你有一定的参考价值。

# -*- coding: utf-8 -*-

from selenium import webdriver

from time import sleep

mobileEmulation = {‘deviceName‘: ‘Apple iPhone 4‘} options = webdriver.ChromeOptions()

options.add_experimental_option(‘mobileEmulation‘, mobileEmulation)

driver = webdriver.Chrome(executable_path=‘chromedriver.exe‘, chrome_options=options)

driver.get(‘http://m.baidu.com‘)

sleep(3)

driver.close()

以上是关于python selenium Chrome 设置为手机模式的主要内容,如果未能解决你的问题,请参考以下文章

python selenium怎么配置IE和chrome的代理,求代码

python+selenium+chrome网页自动化

python的selenium自动化打开chrome后自动和手工混合操作?

python selenium Chrome 设置为无界面模式

Chrome Headless模式——Python+selenium+headerless

关于python+selenium+Chrome的一些问题。get报错。请求大佬帮助