linux安装selenium+chrome

1. 安装 selenium

pip3 install selenium
pip3 安装参考

2. 安装 ChromeDriver

yum install chromedriver.x86_64

3. 安装 Chrome

  1. 配置源,终端复制执行下面的代码
cat << EOF > /etc/yum.repos.d/google-chrome.repo
[google-chrome]
name=google-chrome
baseurl=http://dl.google.com/linux/chrome/rpm/stable/x86_64
enabled=1
gpgcheck=1
gpgkey=https://dl.google.com/linux/linux_signing_key.pub
EOF
  1. 安装 chrome
    yum install google-chrome-stable

4.测试

from selenium import webdriver
driver = webdriver.Chrome()
driver.get(‘http://www.baidu.com/‘)
print( driver.title )
driver.quit()

如果遇到错误"unknown error: DevToolsActivePort file doesn‘t exist " 使用以下配置

from selenium import webdriver
from selenium.webdriver.chrome.options import Options
chrome_options = Options()
chrome_options.add_argument(‘--no-sandbox‘)
chrome_options.add_argument(‘--disable-dev-shm-usage‘)
chrome_options.add_argument(‘--headless‘)
driver = webdriver.Chrome(chrome_options=chrome_options)
driver.get(‘http://www.baidu.com/‘)
print( driver.title )
driver.quit()

原文地址:https://www.cnblogs.com/du-jun/p/10577545.html

时间: 2024-10-07 21:53:41

linux安装selenium+chrome的相关文章

在linux中安装selenium+chrome

安装火狐: sudo apt install firefox-esr 第一个问题:安装selenium---sudo pip install selenium 显示:You are using pip version 8.1.1, however version 18.0 is available. pip的版本太低 解决方案: 更新pip 运行代码:sudo pip install –upgrade pip 第二个问题:安装chrome-- 第一步:sudo apt-get install l

Centos 7.6 安装selenium+firefox+google chrome(支持xshell运行)

1. 查看Linux 版本 [[email protected] selenium]# cat /etc/redhat-release CentOS Linux release 7.6.1810 (Core) 2. 安装selemium 2.1 通过pip 安装selenium,先安装pip: [[email protected] selenium]#yum -y install epel-release [[email protected] selenium]#yum -y install p

Linux环境安装教程——Centos6.6安装Selenium

本人特别喜欢在Centos下搭建环境.目前,主要负责公司的产品测试.所以,需要研究一下Selenium自动化测试如何在Centos上搭建.当然了,Selenium也可以安装在Windows,这方面的教程网上比较多就不说了.但是基于Linux特别是基于Centos的文章比较少,网上有一些安装教程都是基于Ubuntu的,而且python版本.selenium版本都比较老的. 我这次安装的都是最新版本的 先看一下本人虚拟机的系统版本 cat /etc/issue 如图:(本人的虚拟机是最小化安装的)

PJzhang:kali linux安装virtualbox虚拟机和chrome浏览器

猫宁!!! 参考链接: https://www.cnblogs.com/zhishuai/p/8007410.html kali linux 安装virtualbox. 查询系统的版本 apt-cache search linux-header 选择apt-get install linux-headers-5.2.0-kali3-amd64 apt-cache search linux-image 选择apt-get install linux-image-5.2.0-kali3-amd64

ubuntu16.04 python3 安装selenium及环境配置

环境 ubuntu16.04 python3 安装selenium sudo pip3 install seleium 默认安装完是支持firefox,但是更新得太慢对于较新的firefox已经不支持了,需要安装geckodriver,地址 https://github.com/mozilla/geckodriver/releases/ 下载完后解压然后在终端中cd到下载文件路径下,下面以路径为下载为例 依次执行以下命令: 安装xvfb sudo apt-get install xvfb 安装p

selenium+chrome options

环境:selenium chrome 1.      selenium + chrome参数配置 1.1.    启动 from selenium import webdriver def test_selenium(): #url = 'http://127.0.0.1:9000/spider/'    ch_opt = webdriver.ChromeOptions() ch_opt.add_argument('lang=zh_CN.UTF-8')     browser = webdriv

chrome浏览器爬虫WebDriverException解决采用python + selenium + chrome + headless模式

WebDriverException: Message: unknown error: Chrome failed to start: crashed 1. 背景在使用selenium + chrome浏览器渲染模式爬取数据时,如果并发任务过多,或者爬虫的运行时间很长,那么很容易出现浏览器崩溃的现象,如下: 这一般是资源消耗过大造成的(据说chrome浏览器有内存泄漏的情况).那如何解决这个问题呢? 这种情况下,我们首先就会想到使用无界面的浏览器PhantomJS,但是PhantomJS现在年久

Selenium + Chrome Diver使用带用户名密码认证的HTTP代理的方法

默认情况下,Chrome的--proxy-server="http://ip:port"参数不支持设置用户名和密码认证.这样就使得"Selenium + Chrome Driver"无法使用HTTP Basic Authentication的HTTP代理.一种变通的方式就是采用IP地址认证,但在国内网络环境下,大多数用户都采用ADSL形式网络接入,IP是变化的,也无法采用IP地址绑定认证.因此迫切需要找到一种让Chrome自动实现HTTP代理用户名密码认证的方案.

Ubuntu 14.04 LTS下安装Google Chrome浏览器

在Ubuntu 14.04下安装Google Chrome浏览器非常简单,只要到Chrome的网站下载Deb安装包并进行安装即可.当然你也可以使用APT软件包管理器来安装Google Chrome浏览器,如果你想使用APT软件包管理器安装Google Chrome浏览器的话,本文将介绍这两种方法. 目前Linux下的Google Chrome浏览器有三个版本,稳定版.Beta(测试版)和Unstable(不稳定版,也就是Dev版).其中Beta相对较稳定,而最新的功能将会先出现在Unstable