Python - Selenium Chrome 模拟手机
Max.Bai
2017-04
Chrome浏览器支持移动端调试,当然ChromeDriver也支持移动端测试了。
使用python调用Webdriver 的Chrome浏览器驱动,并设置对应的options就可以实现浏览器打开后为移动端模式。
1. 简单模式,指定对应的手机设备即可
mobile_emulation = {"deviceName":"Google Nexus 5"}
完整代码
# -*- coding:utf-8 -*-
import time
from selenium import webdriver
from selenium.webdriver.chrome.options import Options
mobile_emulation = {"deviceName":"Google Nexus 5"}
chrome_options = Options()
chrome_options.add_experimental_option("mobileEmulation", mobile_emulation)
driver = webdriver.Chrome(chrome_options = chrome_options)
driver.get("http:/