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 25 Python
Python 限制线程的最大数量的方法(Semaphore)
Feb 22 Python
详解python读取和输出到txt
Mar 29 Python
python实发邮件实例详解
Nov 11 Python
tensorflow通过模型文件,使用tensorboard查看其模型图Graph方式
Jan 23 Python
Python with语句用法原理详解
Jul 03 Python
Python 利用OpenCV给照片换底色的示例代码
Aug 03 Python
python 两种方法删除空文件夹
Sep 29 Python
Python 微信公众号文章爬取的示例代码
Nov 30 Python
python机器学习创建基于规则聊天机器人过程示例详解
Nov 02 Python
Python 数据可视化神器Pyecharts绘制图像练习
Feb 28 Python
Python中np.random.randint()参数详解及用法实例
Sep 23 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
ThinkPHP3.1新特性之多层MVC的支持
2014/06/19 PHP
PHP实现腾讯与百度坐标转换
2017/08/05 PHP
php ActiveMQ的安装与使用方法图文教程
2020/02/23 PHP
jQuery操作Select的Option上下移动及移除添加等等
2013/11/18 Javascript
window.location不跳转的问题解决方法
2014/04/17 Javascript
jQuery实现的分子运动小球碰撞效果
2016/01/27 Javascript
浅谈js中对象的使用
2016/08/11 Javascript
详解微信小程序 wx.uploadFile 的编码坑
2017/01/23 Javascript
原生JavaScript实现Ajax异步请求
2017/11/19 Javascript
vuex的module模块用法示例
2018/11/12 Javascript
vue.js 2.*项目环境搭建、运行、打包发布的详细步骤
2019/05/01 Javascript
操作按钮悬浮固定在微信小程序底部的实现代码
2019/08/02 Javascript
Vue使用mixin分发组件的可复用功能
2019/09/01 Javascript
JavaScript中变量提升机制示例详解
2019/12/27 Javascript
微信小程序实现星星评分效果
2020/11/01 Javascript
Python处理JSON时的值报错及编码报错的两则解决实录
2016/06/26 Python
Django框架模板注入操作示例【变量传递到模板】
2018/12/19 Python
selenium+python自动化测试之多窗口切换
2019/01/23 Python
详解python多线程之间的同步(一)
2019/04/03 Python
django rest framework 实现用户登录认证详解
2019/07/29 Python
Django中使用极验Geetest滑动验证码过程解析
2019/07/31 Python
Python 获取numpy.array索引值的实例
2019/12/06 Python
Pytorch 图像变换函数集合小结
2021/02/01 Python
移动端HTML5实现文件上传功能【附代码】
2016/03/25 HTML / CSS
美国折扣宠物药房:Total Pet Supply
2018/05/27 全球购物
HEMA法国:荷兰原创设计
2019/02/21 全球购物
美国用餐电影院:Alamo Drafthouse Cinema
2020/01/23 全球购物
如何开启linux的ssh服务
2015/02/14 面试题
学生打架检讨书大全
2014/01/23 职场文书
先进德育工作者事迹材料
2014/01/24 职场文书
治超工作实施方案
2014/05/04 职场文书
2016年情人节问候语
2015/11/11 职场文书
小学班级口号大全
2015/12/25 职场文书
自考生自我评价
2019/06/21 职场文书
致男子1500米运动员的广播稿
2019/11/08 职场文书
Spring Cloud Gateway去掉url前缀
2021/07/15 Java/Android