chrome模拟手机浏览器python+selenium

Posted

tags:

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

    近段时间测试H5页面,使用chrome浏览器然后F12切换到手机模式;刚开始使用selenium框架然后再模拟操作F12,但是发现切换到手机模式后又恢复到浏览器的原始模式了,后来就各种百度,终于找到答案了,以下是示例代码

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

from selenium import webdriver
from time import sleep

protocol='http'
url=protocol+'://m.baidu.com'

mobileEmulation = {'deviceName': 'iPhone 6'}
options = webdriver.ChromeOptions()
options.add_experimental_option('mobileEmulation', mobileEmulation)
driver = webdriver.Chrome(executable_path='chromedriver.exe', chrome_options=options)

driver.get(url)

class OpenH5():
    def openBaidu(self):
        #driver=self.driver
        print "点击输入框"
        driver.find_element_by_id("index-kw").clear()
    
        driver.find_element_by_id("index-kw").send_keys(u"测试")
        
        driver.find_element_by_id("index-bn").click()
        driver.get_screenshot_as_file("../../screen/chaweizhang.png")
        sleep(3)
        #driver.find_element_by_xpath(".//*[@id='app']/div/div/div[3]/ul/li[3]/span[text()='活动']").click()
        print u'关闭浏览器'
        
        driver.quit()
        
login1 =OpenH5()
login1.openBaidu()
sleep(5)


以上是关于chrome模拟手机浏览器python+selenium的主要内容,如果未能解决你的问题,请参考以下文章

Selenium使用Chrome模拟手机浏览器方法解析

chrome浏览器怎么模拟手机访问网页

怎样使用Chrome模拟手机浏览器測试移动端网站

火狐浏览器可以像chrome那样模拟手机访问网站吗?

通过Python3+selenium自动测试网页

PC上测试移动端网站和模拟手机浏览器