2019/09/03

Web Browser Driver (for automation test) Download Link

Microsoft Internet Explorer 11
https://www.microsoft.com/en-us/download/details.aspx?id=44069

Mozilla Firefox
https://github.com/mozilla/geckodriver/releases

Google Chrome
https://chromedriver.chromium.org/downloads

How to install Selenium by Python on CentOS 7

Installation
sudo rpm -ivh http://dl.fedoraproject.org/pub/epel/7/x86_64/e/epel-release-7-5.noarch.rpm
sudo yum -y update
sudo yum -y install epel-release
sudo yum -y install python
sudo yum -y install python-pip
sudo pip install selenium

Check version

python
import selenium
print selenium.__version__