当前位置:Gxlcms > Python > 如何在Python环境下安装Selenium+HeadlessChrome

如何在Python环境下安装Selenium+HeadlessChrome

时间:2021-07-01 10:21:17 帮助过:70人阅读


这篇文章主要介绍了如何在Python环境下安装Selenium+Headless Chrome,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧

最近在学习爬虫,蓦然发现:

Python 3.6.4 (default, Jan  5 2018, 02:35:40) 
[GCC 7.2.1 20171224] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> from selenium import webdriver
>>> driver=webdriver.PhantomJS()
/usr/lib/python3.6/site-packages/selenium/webdriver/phantomjs/webdriver.py:49: UserWarning: Selenium support for PhantomJS has been deprecated, please use headless versions of Chrome or Firefox instead
  warnings.warn('Selenium support for PhantomJS has been deprecated, please use headless '

简单地说,意思就是新版本的Selenium不再支持PhantomJS了,请使用Chrome或Firefox的无头版本来替代。懵逼……现在的好多教程都是基于PhantomJS的啊,没办法,由于我用的是chrome浏览器,就分享一下关于Headless Chrome的安装方法吧。


1.运行cmd或Ctrl + R进入命令行

第一步截图

2.进入python

第二步截图

3.输入代码块

代码块语法遵循标准markdown代码,例如:

from selenium import webdriverfrom selenium.webdriver.chrome.options import Options

chrome_options = Options()
chrome_options.add_argument('--headless')
chrome_options.add_argument('--disable-gpu')
driver = webdriver.Chrome(chrome_options=chrome_options)
driver.get('http://www.baidu.com')

这里写图片描述
这里写图片描述
这里写图片描述
这里写图片描述

好的,现在就将Headless Chrome安装好了。

以上就是如何在Python环境下安装Selenium+Headless Chrome的详细内容,更多请关注Gxl网其它相关文章!

人气教程排行