Installing Selenium and ChromeDriver on Ubuntu

Posted 快传万家

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Installing Selenium and ChromeDriver on Ubuntu相关的知识,希望对你有一定的参考价值。

I recently got Selenium, Google Chrome, and ChromeDriver installed and working on a DigitalOcean instance running 64-bit Ubuntu 14.04. Here’s how:

First, install Google Chrome for Debian/Ubuntu:

sudo apt-get install libxss1 libappindicator1 libindicator7
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb

sudo dpkg -i google-chrome*.deb
sudo apt-get install -f

Now, let’s install xvfb so we can run Chrome headlessly:

sudo apt-get install xvfb

Install ChromeDriver:1

sudo apt-get install unzip

wget -N http://chromedriver.storage.googleapis.com/2.20/chromedriver_linux64.zip
unzip chromedriver_linux64.zip
chmod +x chromedriver

sudo mv -f chromedriver /usr/local/share/chromedriver
sudo ln -s /usr/local/share/chromedriver /usr/local/bin/chromedriver
sudo ln -s /usr/local/share/chromedriver /usr/bin/chromedriver

Install some Python dependencies for Selenium:

sudo apt-get install python-pip

## (Optional) Create and enter a virtual environment:
# sudo apt-get install python-virtualenv
# virtualenv env
# source env/bin/activate

pip install pyvirtualdisplay selenium

Now, we can do stuff like this with Selenium in Python:

from pyvirtualdisplay import Display
from selenium import webdriver

display = Display(visible=0, size=(800, 600))
display.start()
driver = webdriver.Chrome()
driver.get(‘http://christopher.su‘)
print driver.title

以上是关于Installing Selenium and ChromeDriver on Ubuntu的主要内容,如果未能解决你的问题,请参考以下文章

Windows下获取和安装PEAR包管理器 Getting and installing the PEAR package manager

Installing MIB in Ubuntu and Solving the Error “SNMP Cannot Find Module …”

Jenkins Installing and migration

kubernetes installing and using

[Elm] Installing and setting up Elm

Get Docker for CentOS and Installing Docker