码迷,mamicode.com
首页 > 移动开发 > 详细

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

时间:2020-06-12 16:11:44      阅读:72      评论:0      收藏:0      [点我收藏+]

标签:like   add   通过   http   模拟   宽度   操作方法   lin   开发者   

在使用Chrome浏览网页时,我们可以使用Chrome开发者工具模拟手机浏览器,在使用Selenium操作Chrome时同样也可以模拟手机浏览器。

操作方法非常简单,在ChromeOptions()浏览器选项,添加实验选项,mobileEmulation选项中通过devicename指定选择的设备即可,操作代码如下。

  from selenium import webdriver
  options = webdriver.ChromeOptions()
  options.add_experimental_option(‘mobileEmulation‘,{‘deviceName‘: ‘iPhone X‘}) # 模拟iPhone X浏览
  driver = webdriver.Chrome(options=options)
  driver.get(‘http://m.baidu.com‘)

Chrome开发者工具中已经设置好的设备类型非常多,可以在开发者工具->Settings->Devices中查看
使用自定义设备

mobileEmulation除了可以通过deviceName指定设备之外,还可以通过deviceMetrics指定设备指标,一般设备指标包含

  • width: 设备宽度

  • height: 设备高度

  • piexelRatio: 设备像素密度

  • userAgent:设备浏览器标识

    from selenium import webdriver
    options = webdriver.ChromeOptions()

    options.add_experimental_option(‘mobileEmulation‘, {‘deviceMetrics‘:{‘width‘: 320, ‘height‘: 640, ‘piexelRatio‘: 3.0, ‘userAgent‘: ‘Mozilla/5.0 (Linux; Android 4.1.1; GT-N7100 Build/JRO03C) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/35.0.1916.138 Mobile Safari/537.36 T7/6.3‘}})

    driver = webdriver.Chrome(options=options)
    driver.get(‘http://m.baidu.com‘)

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

标签:like   add   通过   http   模拟   宽度   操作方法   lin   开发者   

原文地址:https://www.cnblogs.com/TD1900/p/13099973.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!