Wednesday, September 19, 2012

How-to SetUp/Install Selenium Chromedriver on Python for Linux Distros

The Post Show How-to Set-Up/Install the Selenium Chromedriver on Python for Linux Distros.

Inside the Guide you Find also a Link to Install the Selenium Webdriver on Python for Linux.

Relax and Take the Time of Reading and Understanding the Clear Instructions Contained Here.
Selenium Linux Penguin
  1. Download Chromedriver:

    Google Chromedriver for Linux
  2. Unzip the Archive
  3. Open Terminal Window
  4. Relocate Chromedriver Into your System's Path

    Login as SuperUser

    su

    Move Chromedriver

    mv </path/to>/chromedriver /usr/bin
  5. Test Selenium Chromedriver Installation

    Open a Python Console

    python
    >>> from selenium import webdriver
    >>> driver = webdriver.Chromedriver()
    After a little While you Should See a Chrome Browser Popping-Up.

    If Selenium Webdriver is Not Already Installed on Linux:

    How-to Install Selenium Webdriver on Python for Linux