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之PyUnit单元测试实例
Oct 11 Python
python获取标准北京时间的方法
Mar 24 Python
在Python中使用__slots__方法的详细教程
Apr 28 Python
Python3.6安装及引入Requests库的实现方法
Jan 24 Python
Python Django实现layui风格+django分页功能的例子
Aug 29 Python
使用Python的Turtle库绘制森林的实例
Dec 18 Python
python3 pathlib库Path类方法总结
Dec 26 Python
浅谈keras保存模型中的save()和save_weights()区别
May 21 Python
PyTorch预训练Bert模型的示例
Nov 17 Python
python实现杨辉三角的几种方法代码实例
Mar 02 Python
Pytorch GPU内存占用很高,但是利用率很低如何解决
Jun 01 Python
Python实现提取PDF简历信息并存入Excel
Apr 02 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 zip文件解压类代码
2009/12/02 PHP
php获取mysql数据库中的所有表名的代码
2011/04/23 PHP
PHP中list()函数用法实例简析
2016/01/08 PHP
基于php实现的php代码加密解密类完整实例
2016/10/12 PHP
thinkPHP实现多字段模糊匹配查询的方法
2016/12/01 PHP
php连接mysql数据库
2017/03/21 PHP
PHP基于session.upload_progress 实现文件上传进度显示功能详解
2019/08/09 PHP
Laravel自动生成UUID,从建表到使用详解
2019/10/24 PHP
浅析JQuery获取和设置Select选项的常用方法总结
2013/07/04 Javascript
JS和jQuery使用submit方法无法提交表单的原因分析及解决办法
2016/05/17 Javascript
javascript用正则表达式过滤空格的实现代码
2016/06/14 Javascript
用JS实现图片轮播效果代码(一)
2016/06/26 Javascript
Spring Boot+AngularJS+BootStrap实现进度条示例代码
2017/03/02 Javascript
JavaScript实现旋转轮播图
2020/08/18 Javascript
jsTree事件和交互以及插件plugins详解
2017/08/29 Javascript
vue element项目引入icon图标的方法
2018/06/06 Javascript
vue实现div拖拽互换位置
2020/07/29 Javascript
手把手带你封装一个vue component第三方库
2019/02/14 Javascript
javascript/jquery实现点击触发事件的方法分析
2019/11/11 jQuery
Python解释执行原理分析
2014/08/22 Python
深入解析Python编程中super关键字的用法
2016/06/24 Python
Python数据持久化shelve模块用法分析
2018/06/29 Python
使用Py2Exe for Python3创建自己的exe程序示例
2018/10/31 Python
关于Python3 lambda函数的深入浅出
2019/11/27 Python
在python3中使用shuffle函数要注意的地方
2020/02/28 Python
python实现批量修改文件名
2020/03/23 Python
Python os库常用操作代码汇总
2020/11/03 Python
美国在线旅行社:Crystal Travel
2018/09/11 全球购物
什么是重载?CTS、CLS和CLR分别做何解释
2012/05/06 面试题
中专生职业生涯规划书范文
2014/01/10 职场文书
美术国培研修感言
2014/02/12 职场文书
机关节能减排实施方案
2014/03/17 职场文书
2015年宣传工作总结
2015/04/08 职场文书
从事会计工作年限证明
2015/06/23 职场文书
低端且暴利的线上线下创业项目分享
2019/09/03 职场文书
Python first-order-model实现让照片动起来
2022/06/25 Python