美文网首页小强测试技术与人生杂谈我爱编程
python+chrome+Selenium模拟手机浏览器

python+chrome+Selenium模拟手机浏览器

作者: 测试帮日记 | 来源:发表于2017-08-25 10:29 被阅读68次

    环境

    安装chrome,F12后有个模拟手机浏览器的功能,如果找不到就自己google下啊

    下载chromedriver.exe,并放到python的根目录下

    实现代码

    不废话,直接码起来~

    #引入必要的包

    from selenium import webdriver

    from time import sleep

    #设置

    mobileEmulation = {'deviceName': 'Apple iPhone 6 Plus'}

    options = webdriver.ChromeOptions()

    options.add_experimental_option('mobileEmulation', mobileEmulation)

    #启动driver

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

    #访问百度wap页

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

    sleep(3)

    driver.quit()

    相关文章

      网友评论

        本文标题:python+chrome+Selenium模拟手机浏览器

        本文链接:https://www.haomeiwen.com/subject/bzqudxtx.html