How to Scrape Glassdoor Reviews (Code & No code)


2022-01-12 - 4 min read

Nicolae Rotaru
Nicolae Rotaru

Introduction

Glassdoor.com is an American website where current and former employees anonymously review companies.


In this article, you will read about the easiest way to scrape Glassdoor reviews with Page2API.


You will find code examples for Ruby, Python, PHP, NodeJS, cURL, and a No-Code solution that will import Glassdoor reviews into Google Sheets.

DISCLAIMER: we highly recommend you to scrape Glassdoor only for personal use.
For example: let's say you are looking for a new job and you want to quickly analyze the reviews for the company that you are interested in.

Prerequisites

To start scraping Glassdoor reviews, we will need the following things:


  • A Page2API account
  • A company name that we are interested in.
    In our case, the company that we are interested in is... Glassdoor.
    (Which also has reviews on its website)

How to scrape Glassdoor Reviews

First what we need is to open glassdoor.com and type Glassdoor reviews into the search input.


This will change the browser URL to something similar to:

  
    https://www.glassdoor.com/Reviews/Glassdoor-Reviews-E100431.htm


We will use this URL as the first parameter we need to start the scraping process.


The page that you see must look like the following one:

Glassdoor reviews page

If you inspect the page HTML, you will find out that a single review looks like the following:

Glassdoor single review From the Glassdoor Reviews page, we will scrape the following attributes from each review:

  • Title
  • Author Info
  • Rating
  • Pros
  • Cons
  • Helpful

Now, let's define the selectors for each attribute.

  
    /* Parent: */
    div.gdReview

    /* Title */
    a.reviewLink

    /* Author Info */
    [class*=newUiJobLine] .middle

    /* Rating */
    span.ratingNumber

    /* Pros */
    span[data-test=pros]

    /* Cons */
    span[data-test=cons]

    /* Helpful */
    div.common__EiReviewDetailsStyle__socialHelpfulcontainer
  

Let's handle the pagination.
There are two approaches that can help us scrape all the needed pages:

1. We can scrape the pages using the batch scraping feature
2. We can iterate through the pages by clicking on the Next page button

Now it's time to build the request that will scrape Glassdoor reviews.

The following examples will show how to scrape 5 pages of reviews from Glassdoor.com

If we decide to go with the batch scraping approach, our payload will look like:

  
    {
      "api_key": "YOUR_PAGE2API_KEY",
      "real_browser": true,
      "javascript": false,
      "premium_proxy": "us",
      "batch": {
        "urls": "https://www.glassdoor.com/Reviews/Glassdoor-Reviews-E100431_P[1, 5, 1].htm",
        "concurrency": 1,
        "merge_results": true
      },
      "parse": {
        "reviews": [
          {
            "_parent": "div.gdReview",
            "title": "a.reviewLink >> text",
            "author_info": "[class*=newUiJobLine] .middle >> text",
            "rating": "span.ratingNumber >> text",
            "pros": "span[data-test=pros] >> text",
            "cons": "span[data-test=cons] >> text",
            "helpful": "div.common__EiReviewDetailsStyle__socialHelpfulcontainer >> text"
          }
        ]
      }
    }
  

Code examples (batch scraping approach)

      
    require 'rest_client'
    require 'json'

    api_url = 'https://www.page2api.com/api/v1/scrape'
    payload = {
      api_key: 'YOUR_PAGE2API_KEY',
      premium_proxy: 'us',
      real_browser: true,
      javascript: false,
      batch: {
        urls: "https://www.glassdoor.com/Reviews/Glassdoor-Reviews-E100431_P[1, 5, 1].htm",
        concurrency: 1,
        merge_results: true
      },
      parse: {
        reviews: [
          {
            _parent: 'div.gdReview',
            title: 'a.reviewLink >> text',
            author_info: '[class*=newUiJobLine] .middle >> text',
            rating: 'span.ratingNumber >> text',
            pros: 'span[data-test=pros] >> text',
            cons: 'span[data-test=cons] >> text',
            helpful: 'div.common__EiReviewDetailsStyle__socialHelpfulcontainer >> text'
          }
        ]
      }
    }

    response = RestClient::Request.execute(
      method: :post,
      payload: payload.to_json,
      url: api_url,
      headers: { "Content-type" => "application/json" },
    ).body

    result = JSON.parse(response)

    puts(result)
      
    

Let's take a look at the Next page approach.


Note: the 'Next page' approach described below is for demonstrational purposes only.
We strongly recommend you use the 'Batch' approach whenever possible since it's faster and more reliable.


With this approach, to go to the next page, we must click on the next page button if it's present on the page:

  
    document.querySelector(".nextButton")?.click()
  

Glassdoor next page active

The scraping will continue while the next page button is present on the page, and stop if it disappears.
The stop condition for the scraper will be the following javascript snippet:


  
    document.querySelector(".nextButton") === null
  

If we decide to go with the next page approach, our payload will look like:

  
    {
      "api_key": "YOUR_PAGE2API_KEY",
      "url": "https://www.glassdoor.com/Reviews/Glassdoor-Reviews-E100431.htm",
      "real_browser": true,
      "merge_loops": true,
      "premium_proxy": "us",
      "scenario": [
        {
          "loop": [
            { "wait_for": "div.gdReview" },
            { "execute": "parse" },
            { "execute_js": "document.querySelector(\".nextButton\")?.click()" }
          ],
          "iterations": 5,
          "stop_condition": "document.querySelector('.nextButton') === null"
        }
      ],
      "parse": {
        "reviews": [
          {
            "_parent": "div.gdReview",
            "title": "a.reviewLink >> text",
            "author_info": "[class*=newUiJobLine] .middle >> text",
            "rating": "span.ratingNumber >> text",
            "pros": "span[data-test=pros] >> text",
            "cons": "span[data-test=cons] >> text",
            "helpful": "div.common__EiReviewDetailsStyle__socialHelpfulcontainer >> text"
          }
        ]
      }
    }
  

Code examples (next button approach)

      
    require 'rest_client'
    require 'json'

    api_url = 'https://www.page2api.com/api/v1/scrape'
    payload = {
      api_key: 'YOUR_PAGE2API_KEY',
      url: 'https://www.glassdoor.com/Reviews/Glassdoor-Reviews-E100431.htm',
      real_browser: true,
      merge_loops: true,
      premium_proxy: 'us',
      scenario: [
        {
          loop: [
            { wait_for: 'div.gdReview' },
            { execute: 'parse' },
            { execute_js: 'document.querySelector(".nextButton")?.click()' }
          ],
          iterations: 5,
          stop_condition: 'document.querySelector(".nextButton") === null'
        }
      ],
      parse: {
        reviews: [
          {
            _parent: 'div.gdReview',
            title: 'a.reviewLink >> text',
            author_info: '[class*=newUiJobLine] .middle >> text',
            rating: 'span.ratingNumber >> text',
            pros: 'span[data-test=pros] >> text',
            cons: 'span[data-test=cons] >> text',
            helpful: 'div.common__EiReviewDetailsStyle__socialHelpfulcontainer >> text'
          }
        ]
      }
    }

    response = RestClient::Request.execute(
      method: :post,
      payload: payload.to_json,
      url: api_url,
      headers: { "Content-type" => "application/json" },
    ).body

    result = JSON.parse(response)

    puts(result)
      
    

The result

  
    {
      "result": {
        "reviews": [
          {
            "title": "Glassdoor Walks the Walk",
            "author_info": "Jan 7, 2022 - Senior Manager",
            "rating": "5.0",
            "pros": "Glassdoor creates a positive environment for employees to learn and grow. ...",
            "cons": "At any organization, there is always room for improvement. ...",
            "helpful": "1 person found this review helpful"
          },
          {
            "title": "Great Company To Work For",
            "author_info": "Jan 5, 2022 - Customer Success Manager",
            "rating": "4.0",
            "pros": "I absolutely love working at Glassdoor. ...",
            "cons": "While we do have more of an extensive career growth plan, ...",
            "helpful": "2 people found this review helpful"
          }, ...
        ]
      }, ...
    }
  

How to export Glassdoor reviews to Google Sheets

In order to be able to export our Glassdoor reviews to a Google Spreadsheet we will need to slightly modify our request to receive the data in CSV format instead of JSON.

According to the documentation, we need to add the following parameters to our payload:
  
    "raw": {
      "key": "reviews", "format": "csv"
    }
  

Now our payload will look like:

{ "api_key": "YOUR_PAGE2API_KEY", "premium_proxy": "us", "real_browser": true, "javascript": false, "batch": { "urls": [ "https://www.glassdoor.com/Reviews/Glassdoor-Reviews-E100431_P1.htm", "https://www.glassdoor.com/Reviews/Glassdoor-Reviews-E100431_P2.htm", "https://www.glassdoor.com/Reviews/Glassdoor-Reviews-E100431_P3.htm", "https://www.glassdoor.com/Reviews/Glassdoor-Reviews-E100431_P4.htm", "https://www.glassdoor.com/Reviews/Glassdoor-Reviews-E100431_P5.htm" ], "concurrency": 1, "merge_results": true }, "raw": { "key": "reviews", "format": "csv" }, "parse": { "reviews": [ { "_parent": "div.gdReview", "title": "a.reviewLink >> text", "author_info": "[class*=newUiJobLine] .middle >> text", "rating": "span.ratingNumber >> text", "pros": "span[data-test=pros] >> text", "cons": "span[data-test=cons] >> text", "helpful": "div.common__EiReviewDetailsStyle__socialHelpfulcontainer >> text" } ] } }

Please note that the batch URLs are defined explicitly to make it simpler to edit the payload.


Now, edit the payload above if needed, and press Encode →

The URL with encoded payload will be:


  Press 'Encode'

Note: If you are reading this article being logged in - you can copy the link above since it will already have your api_key in the encoded payload.

The final part is adding the IMPORTDATA function, and we are ready to import our Glassdoor reviews into a Google Spreadsheet.
  Press 'Encode'

The result must look like the following one:

Glassdoor reviews import to Google Sheets

Conclusion

Done!

We just finished scraping the reviews from Glassdoor, and it turned to be easy and fun if we have the proper scraping tool.

You might also like:

Nicolae Rotaru
Nicolae Rotaru
2021-12-07 - 5 min read

How to Scrape Yelp Data: Business Info, Reviews and more.

Learn the easiest way to scrape business information from Yelp with Page2API

Nicolae Rotaru
Nicolae Rotaru
2021-11-22 - 7 min read

How to Scrape Real Estate Data from Zillow (Code & No code)

Learn how to scrape real estate data from Zillow with Page2API in no time

Nicolae Rotaru
Nicolae Rotaru
2021-10-31 - 4 min read

How to Scrape eBay Data: Products, Prices, and more

This article will describe the easiest way to scrape eBay products with Page2API

Ready to Scrape the Web like a PRO?

1000 free API calls.
Based on all requests made in the last 30 days. 99.85% success rate.
No-code-friendly.
Trustpilot stars 4.5