selenium设置浏览器为headless无头模式(Chrome和Firefox)


Posted in Python onJanuary 08, 2021

新版本的selenium已经明确警告将不支持PhantomJS,建议使用headless的Chrome或FireFox。

两者使用方式非常类似,基本步骤为:

  • 下载驱动
  • 创建选项,设定headless
  • 创建WebDriver,指定驱动位置和选项
  • 对URL发起请求,获得结果,进行解析

Chrome

驱动的下载路径为:https://chromedriver.storage.googleapis.com/index.html

接下来创建选项并设定headless:

options = webdriver.ChromeOptions()
options.set_headless()

创建WebDriver,指定驱动位置和选项:

driver = webdriver.Chrome(
  'D://chromedriver_win32//chromedriver', chrome_options=options)

发起请求,获得结果并进行解析:

driver.get('http://www.sohu.com/')
time.sleep(3)
print(driver.page_source)
driver.close()

Firefox

驱动的下载路径为:https://github.com/mozilla/geckodriver

启动的步骤与Chrome一致,只不过使用的选项对象和创建的WebDriver对象略有不同。直接上源代码:

options = webdriver.FirefoxOptions()
options.set_headless()
driver = webdriver.Firefox(
  firefox_options=options,
  executable_path='D:/geckodriver-win64/geckodriver')
driver.get('http://www.sohu.com/')
time.sleep(3)
print(driver.page_source)
driver.close()

 SELENIUM使用HEADLESS无头模式实现无界面运行

先导包:

from selenium.webdriver.chrome.options import Options

加入如下配置:

chrome_options = Options()

chrome_options.add_argument('--window-size=1920,1080')   # 设置窗口界面大小

chrome_options.add_argument('--headless')

driver = webdriver.Chrome(chrome_options=chrome_options)

参考代码:

from selenium import webdriver
import time
import multiprocessing
from selenium.webdriver.chrome.options import Options



class Zutuan():
  def __init__(self):
    """打开浏览器"""
    self.chrome_options = Options()
    self.chrome_options.add_argument('--window-size=1920,1080')
    self.chrome_options.add_argument('--headless')
    self.driver = webdriver.Chrome(chrome_options=self.chrome_options)

  def open_zutuan(self, url):
    """传入组团url"""
    self.driver.get(url)
    #self.driver.maximize_window()
    self.driver.refresh()
    #time.sleep(0.01)
    self.driver.implicitly_wait(30)    # todo implicitly隐式等待,等待元素可见

  def option_element(self, user, password):
    """xpath定位元素"""
    self.driver.find_element_by_xpath('//div[@class="login a"]/i').click()
    time.sleep(0.01)
    self.driver.find_element_by_xpath('//div[@class="a-title"]').click()
    self.driver.find_element_by_xpath('//input[@type="text" or @class="userName"]').send_keys(user)
    self.driver.find_element_by_xpath('//input[@type="password"]').send_keys(password)
    self.driver.find_element_by_xpath('//div[@class="button"]').click()
    time.sleep(1)
    self.driver.refresh()


  def select_commodity(self, content):
    """搜索组团商品"""
    # TODO self.content实例属性传给下面的方法使用,如果想把值给下面的方法用,添加实例属性解决
    self.content = content
    self.driver.find_element_by_xpath('//input[@type="text"]').send_keys(content)
    self.driver.find_element_by_xpath('//div[@class="search"]').click()
    self.driver.refresh()
    #return content

  def result(self):
    """判断搜索商品成功后的提示信息,断言页面是否成功"""
    if self.content in self.driver.page_source:
      #print(self.content)
      print('商品搜索成功,测试通过')
    else:
      print('商品搜索错误,测试失败')

  def closed(self):
    """关闭浏览器"""
    time.sleep(1)
    self.driver.quit()


def run1():
  # TODO 根据操作顺序,调用方法执行
  zt = Zutuan()
  zt.open_zutuan('http://www.zutuan.cn/index.html#/')
  zt.option_element('1489088761@qq.com', 'mg123456')
  zt.select_commodity('香蕉')
  zt.result()
  zt.closed()


class View_details(Zutuan):
  """把商品添加为明星单品,"""
  def check_commodity(self, number):
    """进入商品详情页,点击添加明星单品"""
    self.driver.find_element_by_xpath('//a[@target="_blank"]/img').click()
    self.driver.switch_to.window(self.driver.window_handles[1])
    self.driver.find_element_by_xpath('//div[@class="child start"]').click()
    self.driver.find_element_by_xpath('//div[@class="el-dialog__body"]//input[@type="text"]').send_keys(number)
    self.driver.find_element_by_xpath('//button[@type="button" and @class="el-button el-button--danger"]').click()
    time.sleep(1)

  def result(self):
    """重写父类方法,判断商品添加成功后的提示信息,断言页面是否成功"""
    if '添加成功' in self.driver.page_source:
      print('商品添加成功,测试通过')
    else:
      print('商品添加失败,测试失败')
    # 调用父类方法关闭
    super().closed()


def run2():
  vd = View_details()
  vd.open_zutuan('http://www.zutuan.cn/index.html#/')
  vd.option_element('1489088761@qq.com', 'mg123456')
  vd.select_commodity('苹果')
  vd.check_commodity(91628)
  vd.result()


def main():
  p1 = multiprocessing.Process(target=run1)
  p2 = multiprocessing.Process(target=run2)

  p1.start()
  p2.start()


if __name__ == '__main__':
  main()

到此这篇关于selenium设置浏览器为headless无头模式(Chrome和Firefox)的文章就介绍到这了,更多相关selenium 浏览器为headless无头模式内容请搜索三水点靠木以前的文章或继续浏览下面的相关文章希望大家以后多多支持三水点靠木!

Python 相关文章推荐
Python函数学习笔记
Oct 07 Python
python 实现堆排序算法代码
Jun 05 Python
用Python从零实现贝叶斯分类器的机器学习的教程
Mar 31 Python
详解Python的单元测试
Apr 28 Python
python获取当前时间对应unix时间戳的方法
May 15 Python
Python中__init__.py文件的作用详解
Sep 18 Python
Scrapy的简单使用教程
Oct 24 Python
python实现浪漫的烟花秀
Jan 30 Python
解决python 3 urllib 没有 urlencode 属性的问题
Aug 22 Python
Django连接数据库并实现读写分离过程解析
Nov 13 Python
Python实现网络聊天室的示例代码(支持多人聊天与私聊)
Jan 27 Python
matplotlib如何设置坐标轴刻度的个数及标签的方法总结
Jun 11 Python
python画图时设置分辨率和画布大小的实现(plt.figure())
Jan 08 #Python
python使用matplotlib的savefig保存时图片保存不完整的问题
Jan 08 #Python
Numpy中的数组搜索中np.where方法详细介绍
Jan 08 #Python
python 窃取摄像头照片的实现示例
Jan 08 #Python
详解python使用金山词霸的翻译功能(调试工具断点的使用)
Jan 07 #Python
Opencv+Python识别PCB板图片的步骤
Jan 07 #Python
Django使用django-simple-captcha做验证码的实现示例
Jan 07 #Python
You might like
php一行代码获取文件后缀名实例分析
2014/11/12 PHP
关于PHP 如何用 curl 读取 HTTP chunked 数据
2016/02/26 PHP
prototype Element学习笔记(Element篇三)
2008/10/26 Javascript
Extjs学习笔记之五 一个小细节renderTo和applyTo的区别
2010/01/07 Javascript
基于jquery的滑动样例代码
2010/11/20 Javascript
javascript为下拉列表动态添加数据项
2014/05/23 Javascript
JS实现鼠标滑过显示边框的菜单效果
2016/09/21 Javascript
vue.js指令和组件详细介绍及实例
2017/04/06 Javascript
opencv 识别微信登录验证滑动块位置
2018/08/07 Javascript
少女风vue组件库的制作全过程
2019/05/15 Javascript
小程序如何自主实现拦截器的示例代码
2019/11/04 Javascript
遗传算法python版
2018/03/19 Python
Django学习笔记之ORM基础教程
2018/03/27 Python
pandas DataFrame 根据多列的值做判断,生成新的列值实例
2018/05/18 Python
python3.5 email实现发送邮件功能
2018/05/22 Python
Python嵌套列表转一维的方法(压平嵌套列表)
2018/07/03 Python
在Pycharm terminal中字体大小设置的方法
2019/01/16 Python
python 列表中[ ]中冒号‘:’的作用
2019/04/30 Python
numpy linalg模块的具体使用方法
2019/05/26 Python
详解python 利用echarts画地图(热力图)(世界地图,省市地图,区县地图)
2019/08/06 Python
Python定时任务随机时间执行的实现方法
2019/08/14 Python
华三通信H3C面试题
2015/05/15 面试题
什么是索引指示器
2012/08/20 面试题
生产经理的自我评价分享
2013/11/07 职场文书
会计与审计毕业生自荐信范文
2013/12/30 职场文书
初中三年毕业生的自我评价分享
2014/02/14 职场文书
cf战队收人广告词
2014/03/14 职场文书
高校教师岗位职责
2014/03/18 职场文书
爱的奉献演讲稿
2014/09/10 职场文书
财务负责人岗位职责
2015/02/03 职场文书
2015年国际护士节演讲稿
2015/03/18 职场文书
幼儿园庆元旦主持词
2015/07/06 职场文书
幼儿园语言教学反思
2016/02/23 职场文书
解决numpy和torch数据类型转化的问题
2021/05/23 Python
vue实现水波涟漪效果的点击反馈指令
2021/05/31 Vue.js
JavaScript异步操作中串行和并行
2021/11/20 Javascript