Selenium Scripts are built to do some tedious tasks which can be automated using headless web browsers.
For example, Searching for some Questions on Different Search engines and storing results in a file by visiting each link. This task can take a long for a normal human being but with the help of selenium scripts one can easily do it
Now, Some of You may be wondering what is headless web browsers. It’s nothing but a browser that can be controlled using these selenium scripts for automation(web tasks). Selenium Scripts can be programmed using various languages such as JavaScript, Java, Python, etc.
How to Use selenium with Python and Linux Environment.
Python should already be installed. It can be 2.* or 3.* version.Â
Steps:Â
Â
- Installing SeleniumÂ
 - Installing Webdrivers (headless)Â
 - Creating Simple CodeÂ
Â
Â
Installing Selenium
Whatever Operating System You are Using Python command is Same for Installing Selenium Library.
First Method
Open Terminal/Cmd and Write Command as written Below
Â
python -m pip install selenium
Second Method
Alternatively, you can download the source distribution here, unarchive it, and run the command below:Â
Â
python setup.py install
Â
Installing Webdrivers
One Can Install Firefox, Chromium, PhantomJs(Deprecated Now), etc.Â
Â
- for using Firefox you may need to install GeckoDriverÂ
 - for using Chrome you may need to install ChromiumÂ
Â
In this article, Firefox is used so One can Follow the Below Steps to Install:-
Steps for Linux:-
1. Go to the geckodriver releases page. Find the latest version of the driver for your platform and download it.Â
For example:Â
Â
wget https://github.com/mozilla/geckodriver/releases/download/v0.24.0/geckodriver-v0.24.0-linux64.tar.gz
2. Extract the file with:Â
Â
tar -xvzf geckodriver*
3. Make it executable:Â
Â
chmod +x geckodriver
4. Move Files to usr/local/binÂ
Â
sudo mv geckodriver /usr/local/bin/
Steps for Windows:-
1. Same as Step 1 in Linux Download the GeckoDriver
2. Extract it using WinRar or any application you may have.
3. Add it to Path using Command Prompt
Â
setx path "%path%;GeckoDriver Path"
For Example:-Â
Â
setx path "%path%;c:/user/eliote/Desktop/geckodriver-v0.26.0-win64/geckodriver.exe"
Â
Creating Simple Code
Â
Python3
# Python program to demonstrate # selenium Â
Â
from selenium import webdriver Â
Â
driver = webdriver.Firefox() driver.get("https: / / google.co. in ") |
Output:
Â
Â