Ubuntu16.4下安装Chrome浏览器以及Chromedriver
一、Chrome浏览器的安装
-
对于谷歌Chrome32位版本,使用如下链接:
wget https://dl.google.com/linux/direct/google-chrome-stable_current_i386.deb
对于64位版本可以使用如下链接下载:
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
下载完后,运行如下命令安装。
sudo dpkg -i google-chrome*.deb
sudo apt-get install -f
- 1
- 2
安装好之后可以直接搜索Chrome启动,并右击进行固定到左边
- 1
二、Chromedriver的安装
1.安装xvfb以便我们可以无头奔跑地运行Chrome
sudo apt-get install xvfb
- 1
2 安装依赖
sudo apt-get install unzip
- 1
3 下载安装包
wget -N http://chromedriver.storage.googleapis.com/2.26/chromedriver_linux64.zip
- 1
4 解压缩+添加权限
unzip chromedriver_linux64.zip
- 1
5 移动
sudo mv -f chromedriver /usr/local/share/chromedriver
- 1
6 建立软连接
sudo ln -s /usr/local/share/chromedriver /usr/local/bin/chromedriver
sudo ln -s /usr/local/share/chromedriver /usr/bin/chromedriver
- 1
- 2
三、执行python脚本,打开百度,进行搜索
from selenium import webdriver
driver = webdriver.Chrome()
driver.get('http://www.baidu.com')
driver.find_element_by_id("kw").send_keys("吴磊")
driver.find_element_by_id("su").click()
- 1
- 2
- 3
- 4
- 5
运行之后可看到Chrome浏览器打开并进行搜索
http://chromedriver.storage.googleapis.com/index.html
--------------------- 本文来自 WuLei06 的CSDN 博客 ,全文地址请点击:https://blog.csdn.net/qq_34374753/article/details/81607052?utm_source=copy
posted on 2018-10-08 14:33 zhuguanhao 阅读(862) 评论(0) 编辑 收藏 举报