Python Selenium Web Scraping Example



  1. Web scraping with Python is easy due to the many useful libraries available. A barebones installation isn’t enough for web scraping. One of the Python advantages is a large selection of libraries for web scraping. For this Python web scraping tutorial, we’ll be using three important libraries – BeautifulSoup v4, Pandas, and Selenium.
  2. The solution to the above difficulties is to use a browser rendering engine that parses HTML, applies the CSS formatting and executes JavaScript to display a web page. In this example, for rendering Java Script we are going to use a familiar Python module Selenium. The following Python code will render a web page with the help of.
  1. Web Scraping Using Selenium Python
  2. Web Scraping With Selenium Python
  3. Python Web Scraping Tutorial
  4. Python Selenium Web Scraping Example Program
  • Python Web Scraping Tutorial
  • Python Web Scraping Resources

Using Selenium v3.x opening a website in a New Tab through Python is much easier now. We have to induce an WebDriverWait for numberofwindowstobe(2) and then collect the window handles every time we open a new tab/window and finally iterate through the window handles and switchTo.window(newlyopened) as required.

  • Selected Reading

In this chapter, let us learn how to perform web scraping on dynamic websites and the concepts involved in detail.

Introduction

Web scraping is a complex task and the complexity multiplies if the website is dynamic. According to United Nations Global Audit of Web Accessibility more than 70% of the websites are dynamic in nature and they rely on JavaScript for their functionalities.

Dynamic Website Example

Let us look at an example of a dynamic website and know about why it is difficult to scrape. Here we are going to take example of searching from a website named http://example.webscraping.com/places/default/search. But how can we say that this website is of dynamic nature? It can be judged from the output of following Python script which will try to scrape data from above mentioned webpage −

Output

The above output shows that the example scraper failed to extract information because the <div> element we are trying to find is empty.

Web Scraping Using Selenium Python

Approaches for Scraping data from Dynamic Websites

We have seen that the scraper cannot scrape the information from a dynamic website because the data is loaded dynamically with JavaScript. In such cases, we can use the following two techniques for scraping data from dynamic JavaScript dependent websites −

Web
  • Reverse Engineering JavaScript
  • Rendering JavaScript

Reverse Engineering JavaScript

The process called reverse engineering would be useful and lets us understand how data is loaded dynamically by web pages.

For doing this, we need to click the inspect element tab for a specified URL. Next, we will click NETWORK tab to find all the requests made for that web page including search.json with a path of /ajax. Instead of accessing AJAX data from browser or via NETWORK tab, we can do it with the help of following Python script too −

Example

The above script allows us to access JSON response by using Python json method. Similarly we can download the raw string response and by using python’s json.loads method, we can load it too. We are doing this with the help of following Python script. It will basically scrape all of the countries by searching the letter of the alphabet ‘a’ and then iterating the resulting pages of the JSON responses.

After running the above script, we will get the following output and the records would be saved in the file named countries.txt.

Output

Rendering JavaScript

In the previous section, we did reverse engineering on web page that how API worked and how we can use it to retrieve the results in single request. However, we can face following difficulties while doing reverse engineering −

  • Sometimes websites can be very difficult. For example, if the website is made with advanced browser tool such as Google Web Toolkit (GWT), then the resulting JS code would be machine-generated and difficult to understand and reverse engineer.

  • Some higher level frameworks like React.js can make reverse engineering difficult by abstracting already complex JavaScript logic.

Python Selenium Web Scraping Example

The solution to the above difficulties is to use a browser rendering engine that parses HTML, applies the CSS formatting and executes JavaScript to display a web page.

Python selenium web scraping example python

Example

Web Scraping With Selenium Python

In this example, for rendering Java Script we are going to use a familiar Python module Selenium. The following Python code will render a web page with the help of Selenium −

First, we need to import webdriver from selenium as follows −

Now, provide the path of web driver which we have downloaded as per our requirement −

Now, provide the url which we want to open in that web browser now controlled by our Python script.

Now, we can use ID of the search toolbox for setting the element to select.

Next, we can use java script to set the select box content as follows −

The following line of code shows that search is ready to be clicked on the web page −

Next line of code shows that it will wait for 45 seconds for completing the AJAX request.

Python Selenium Web Scraping Example

Python Web Scraping Tutorial

Now, for selecting country links, we can use the CSS selector as follows −

Python Selenium Web Scraping Example Program

Now the text of each link can be extracted for creating the list of countries −