> ## Content Index
> Fetch the complete content index at: https://serpapi.com/blog/llms.txt
> Use this file to discover other available public pages before exploring further.

# Web Scraping with CSS Selectors using Python
- URL: https://serpapi.com/blog/web-scraping-with-css-selectors-using-python/
- Published: 2021-11-22T14:45:38.000Z
- Updated: 2024-10-11T02:31:31.000Z
- Description: When web-scraping, CSS selectors are one of the best friends. This tutorial will tell you what they're, their pros and cons, and why they matter from a web scraping perspective with Python examples.
- Author: Dmitriy Zub
- Tags: Tips&Tricks, Web Scraping

This blog post is ongoing with somewhat regular updates. It's about understanding CSS selectors when doing web scraping, and what tools might be handy to use.

At SerpApi we've encountering different types of selectors, some of them are quite complex that include complex logic, for example, logic may include selectors like [:has()](https://developer.mozilla.org/en-US/docs/Web/CSS/:has), [:not()](https://developer.mozilla.org/en-US/docs/Web/CSS/:not) among other selectors, and we want to share a back a little of our knowledge gained during our journey while building our APIs.

If you're new to web scraping, feel free to read our [beginner's guide to web scraping](https://serpapi.com/blog/how-to-build-a-web-scraper-a-beginners-guide/)

We want to point out that this blog post is not a complete CSS selectors reference, but a mini-guided tour of frequently used and more advanced type of selectors and how to work them while web scraping with code examples.

## Prerequisites

A basic familiarity with `bs4` library, or whatever HTML parser package/framework you're using as usage of CSS selectors in different languages, frameworks, packages are not much different.

Install libraries:

```python
pip install requests lxml beautifulsoup4

```

## What is CSS selectors

CSS selectors are patterns used to ~~select~~ match the element(s) you want to ~~style~~ extract from HTML page.

## SelectorGadget

Let's start with easy one, [SelectorGadget](https://selectorgadget.com/) Chrome extension. This extension allows to quickly grab CSS selector(s) by clicking on desired element in your browser, and returns a CSS selector(s).

> SelectorGadget is an [open-source](https://github.com/cantino/selectorgadget) tool that makes CSS selector generation and discovery on complicated sites a breeze.

**Uses cases**:

- for web page scraping with tools such as `Nokogiri` and `BeautifulSoup`.
- to generate `jQuery` selectors for dynamic sites.
- as a tool to examine JavaScript-generated DOM structures.
- as a tool to help you style only particular elements on the page with your stylesheets.
- for `selenium` or `phantomjs` testing.

---

When using SelectorGadget it highlights element(s) in:

- **yellow** which is mean that it's guessing what the user is looking for, and needs *possible* additional clarification.

![Image description](https://dev-to-uploads.s3.amazonaws.com/uploads/articles/hpib0te8qbettetgmphh.png)

- **red** excludes from match selection.

![Image description](https://dev-to-uploads.s3.amazonaws.com/uploads/articles/owkjtmgolmj3tf9aga0n.png)

- **green** includes to match selection.

![Image description](https://dev-to-uploads.s3.amazonaws.com/uploads/articles/x9h5yqlm0h9tlfndtsxv.png)

---

## Picking CSS Selectors by Hand

Since SelectorGadget isn't a magical all around tool, sometimes it can't get the desired element. This happens when website HTML tree is not well structured, or if the site is rendered via JavaScript.

When it happens, we use Elements tab via Dev Tools (`F12` on a keyboard or `CTRL+SHIFT+C`) to locate and grab CSS selector(s) or HTML elements by their:

- type selector: `<input>`
- class selector: `.class`
- id selector: `#id`
- attribute selector: `[attribute]`

## Types of CSS Selectors

### [Type Selectors](https://developer.mozilla.org/en-US/docs/Web/CSS/Type%5Fselectors)

✍Syntax: `element_name`

Type selectors matches elements by node name. In other words, it selects all elements of the given type within a HTML document.

```python
soup.select('a')      # returns all <a> elements
soup.select('span')   # returns all <span> elements
soup.select('input')  # returns all <input> elements
soup.select('script') # returns all <script> elements

```

### [Class Selectors](https://developer.mozilla.org/en-US/docs/Web/CSS/Class%5Fselectors)

✍Syntax: `.class_name`

Class selectors matches elements based on the contents of their class attribute. It's like calling a class method `PressF().when_playing_cod()`.

```python
soup.select('.mt-5')                   # returns all elements with current .selector
soup.select('.crayons-avatar__image')  # returns all elements with current .selector
soup.select('.w3-btn')                 # returns all elements with current .selector

```

### [ID Selectors](https://developer.mozilla.org/en-US/docs/Web/CSS/ID%5Fselectors)

✍Syntax: `#id_value`

ID selectors matches an element based on the value of the elements `id` attribute. In order for the element to be selected, its `id` attribute must match exactly the value given in the selector.

```python
soup.select('#eob_16')              # returns all elements with current #selector
soup.select('#notifications-link')  # returns all elements with current #selector
soup.select('#value_hover')         # returns all elements with current #selector

```

### [Attribute Selectors](https://developer.mozilla.org/en-US/docs/Web/CSS/Attribute%5Fselectors)

✍Syntax: `[attribute=attribute_value]` or `[attribute]`, [more examples](https://developer.mozilla.org/en-US/docs/Web/CSS/Attribute%5Fselectors#syntax).

Attribute selectors matches elements based on the presence or value of a given attribute.

The only difference is that this selectors uses curly braces `[]` instead of a dot (`.`) as class, or a hash (*or octothorpe*) symbol (`#`) as ID.

```python
soup.select('[jscontroller="K6HGfd"]')         # returns all elements with current [selector]
soup.select('[data-ved="2ascASqwfaspoi_SA8"]') # returns all elements with current [selector]

# elements with an attribute name of data-id
soup.select('[data-id]')                       # returns all elements with current [selector]

```

### [Selector List](https://developer.mozilla.org/en-US/docs/Web/CSS/Selector%5Flist)

✍Syntax: `element, element, element, ...`

Selector list selects all the matching nodes (*elements*). From a web scraping perspective this CSS selectors is great (*in my opinion*) to handle different HTML layouts because if one of the selectors is present it will grab all elements from an existing selector.

As an example from Google Search (*carousel results*), the HTML layout will be different depending on country where the search is coming from.

When country of the search is *not* the United States:

![Image description](https://dev-to-uploads.s3.amazonaws.com/uploads/articles/61flzxalh9jclzv0ggif.png)

When country of the search is *set to* the United States:

![Image description](https://dev-to-uploads.s3.amazonaws.com/uploads/articles/l1knk4m45aijfln84rer.png)

Following examples translates to this code snippet (*handles both HTML layouts*):

```python
# will return all elements either by one of these selectors
soup.select('#kp-wp-tab-Albums .PZPZlf, .keP9hb')

```

### [Descendant combinator](https://developer.mozilla.org/en-US/docs/Web/CSS/Descendant%5Fcombinator)

✍Syntax: `selector1 selector2`

Descendant combinator represented by a single space (` `) character and selects two selectors such that elements matched by the *second* selector are selected if they have an ancestor (parent, parent's parent, parent, etc) element matching the *first* selector.

```python
soup.select('.NQyKp .REySof')   # dives inside .NQyKp -> dives again to .REySof and grabs data from it
soup.select('div cite.iUh30')   # dives inside div -> dives inside cite.iUh30 and grabs data from it
soup.select('span#21Xy a.XZx2') # dives inside span#id -> dives inside a.XZx2 and grabs data from it

```

### [Selector :nth-child()](https://developer.mozilla.org/en-US/docs/Web/CSS/:nth-child)

✍Syntax: `selector|element:nth-child()`

The `:nth-child()` pseudo-class matches elements based on their position among a group of siblings.

```python
soup.select('p.SacA1:nth-child(1)') # selects every second p.SacA1 element

```

### [Selector :has()](https://developer.mozilla.org/en-US/docs/Web/CSS/:has)

✍Syntax: `selector|element:has(selector|element)`

`:has()` is a pseudo-class that checks if parent element(s) contains certain child element(s)

```python
soup.select('p:has(.sA1Sg)') # checks if p element that has .sA1Sg selector as a child

```

### [Function contains()](https://developer.mozilla.org/en-US/docs/Web/XPath/Functions/contains)

✍Syntax: `selector|element:contains(selector|element|text)`

`contains()` method is not completely related to CSS selectors but rather to XPath. It's returns true or false if there's a value in a substring of searched (first) string. A little confusing, let's show an example.

```python
from parsel import Selector

dummy_string_1 = 'I saw a cat that had $3000 in the pocket'
dummy_string_2 = 'I saw a cat that was dancing with pigeon'

selector_1 = Selector(text=dummy_string_1)
selector_2 = Selector(text=dummy_string_2)

# $ has to be espaced with \ symbol 
# otherwise SelectorSyntaxError will be raised
text_1 = selector_1.css(':contains(\$)::text').get() 👈👈👈
text_2 = selector_2.css(':contains(\$)::text').get()

print(text_1)
print(text_2)

```

Outputs:

```
I saw a cat that had $3000 in the pocket 👈👈👈
None

```

Here is a [guide on how to use XPath](https://serpapi.com/blog/xpath-selector-cheat-sheet-practical-examples-included/).

### [Selector :not()](https://developer.mozilla.org/en-US/docs/Web/CSS/:not)

✍Syntax: `selector|element:not(selector|element|text)`

The `:not()` pseudo-class is used to prevent specific items from being selected.

The `:not` pseudo-class could used (chained) with `contains()` method to create a boolean expression which is really handy.

Continuing with the previous example, we can select element that doesn't contains `$` symbol in the text `:not(:contains(\$))::text`:

```python
from parsel import Selector

dummy_string_1 = 'I saw a cat that had $3000 in the pocket'
dummy_string_2 = 'I saw a cat that was dancing with pigeon'

selector_1 = Selector(text=dummy_string_1)
selector_2 = Selector(text=dummy_string_2)

# $ has to be espaced with \ symbol 
# otherwise SelectorSyntaxError will be raised
text_1 = selector_1.css(':contains(\$)::text').get()
text_2 = selector_2.css(':not(:contains(\$))::text').get() 👈👈👈

print(text_1)
print(text_2)

```

Outputs:

```
I saw a cat that had $3000 in the pocket
I saw a cat that was dancing with pigeon 👈👈👈

```

Here's a more practical usage where we need to select everything (only category) that doesn't contains `$` in the text string:

| Without :not(:contains(\\$))                                                                                    | With :not(:contains(\\$))                                                                                       |
| --------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- |
| ![image](https://user-images.githubusercontent.com/78694043/196109016-fcbb5a50-1dbf-4170-947f-851f8ee5b363.png) | ![image](https://user-images.githubusercontent.com/78694043/196108728-c229d73e-4376-4ac7-9767-38a3c6236b6f.png) |

Other useful CSS selectors:

| Selector                                                                        | Explanation                                                                                                                                     |
| ------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------- |
| [:nth-of-type()](https://developer.mozilla.org/en-US/docs/Web/CSS/:nth-of-type) | Selects every n element that is the second n element of its parent.                                                                             |
| [:is()](https://developer.mozilla.org/en-US/docs/Web/CSS/:is)                   | pseudo-class function takes a selector list as its argument, and selects any element that can be selected by one of the selectors in that list. |

Additional useful CSS selectors you can find on [W3C Level 4 selectors](https://drafts.csswg.org/selectors/), [W3Schools CSS selectors reference](https://www.w3schools.com/cssref/css%5Fselectors.asp), and [MDN CSS selectors documentation](https://developer.mozilla.org/en-US/docs/Web/CSS/CSS%5FSelectors).

## Testing CSS Selectors

To test if the selector extracts correct data you can:

Place those CSS selector(s) in the SelectorGadget window and see what elements being selected:

![Image description](https://dev-to-uploads.s3.amazonaws.com/uploads/articles/n0op758uowsmquay4prl.png)

Use Dev Tools Console tab via [$$(".selector")](https://developer.chrome.com/docs/devtools/console/utilities/#querySelectorAll-function) method (*creates an `array` (`list()`) of elements*):

```javascript
$$(".DKV0Md")

```

Which is equivalent to [document.querySelectorAll(".selector")](https://developer.mozilla.org/en-US/docs/Web/API/Document/querySelectorAll) method ([according to Chrome Developers website](https://developer.chrome.com/docs/devtools/console/utilities/#querySelectorAll-function):

```javascript
document.querySelectorAll(".DKV0Md")

```

Output from the DevTools Console for both methods are the same:

![Image description](https://dev-to-uploads.s3.amazonaws.com/uploads/articles/vwlwf7fi6etviy8iifgx.png)

## Pros of CSS Selector

- easy to pick.
- easy to get used (especially if have an HTML background).
- has tools to help pick (select) them.
- can be understandable inside the code if selector itself is understandable, not something like `.wtf228YoLo`.

## Cons of CSS Selector

Betting only classes might be not a good idea since they could probably change.

A little more realible way would be to use *attribute selectors* selectors (mentioned above) they are likely to change less frequently.

Attribute selectors examples: (HTML from Google organic results):

![Image description](https://dev-to-uploads.s3.amazonaws.com/uploads/articles/98jb3hb0lohak6v7cr75.png)

Many modern websites use autogenerated CSS selectors for every change that is being made to certain style component, which means that rely exclusively on them is not a good idea. But again, it will depend on how often do they really change.

The biggest problem that might appear is that when the code will be executed it will blow up with an error, and the maintainer of the code should manually change CSS selector(s) to make the code run properly.

Seems like not a big deal, which is true, but it might be annoying if selectors are changing frequently.

## Code Examples

This section will show a couple of actual examples from different websites to get you familiarize a bit more.

#### Extract title, snippet, link, displayed link from Google Search results.

![Image description](https://dev-to-uploads.s3.amazonaws.com/uploads/articles/9p4cvb5y06cqbvyq3bva.png)

Test CSS container selector:

![Image description](https://dev-to-uploads.s3.amazonaws.com/uploads/articles/d3o1breedmhsz3fk7ke2.png)

Code:

```python
import requests, lxml
from bs4 import BeautifulSoup

headers = {
    "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36"
}

html = requests.get("https://www.google.com/search?q=minecraft", headers=headers)
soup = BeautifulSoup(html.text, "lxml")

for result in soup.select(".tF2Cxc"):
    title = result.select_one(".DKV0Md").text
    link = result.select_one(".yuRUbf a")["href"]
    displayed_link = result.select_one(".lEBKkf span").text
    snippet = result.select_one(".lEBKkf span").text

    print(f"{title}\n{link}\n{displayed_link}\n{snippet}\n")
    

# part of the output 
'''
Log in | Minecraft
https://minecraft.net/login
https://minecraft.net › login
Still have a Mojang account? Log in here: Email. Password. Forgot your password? Login. Mojang © 2009-2021. "Minecraft" is a trademark of Mojang AB.

What is Minecraft? | Minecraft
https://www.minecraft.net/en-us/about-minecraft
https://www.minecraft.net › en-us › about-minecraft
Prepare for an adventure of limitless possibilities as you build, mine, battle mobs, and explore the ever-changing Minecraft landscape.
'''

```

#### Extract titles from SerpApi Blog

![Image description](https://dev-to-uploads.s3.amazonaws.com/uploads/articles/6sc0y2i9vrrxhefl48fz.png)

Testing `.post-card-title` CSS selector in Devtools Console:

```
$$(".post-card-title")

(7) [h2.post-card-title, h2.post-card-title, h2.post-card-title, h2.post-card-title, h2.post-card-title, h2.post-card-title, h2.post-card-title]
0: h2.post-card-title
1: h2.post-card-title
2: h2.post-card-title
3: h2.post-card-title
4: h2.post-card-title
5: h2.post-card-title
6: h2.post-card-title
length: 7
[[Prototype]]: Array(0)

```

Code:

```python
import requests, lxml
from bs4 import BeautifulSoup

html = requests.get("https://serpapi.com/blog/")
soup = BeautifulSoup(html.text, "lxml")

for title in soup.select(".post-card-title"):
    print(title.text)
    
'''
Scrape Google Carousel Results with Python
SerpApi’s YouTube Search API
DuckDuckGo Search API for SerpApi
Extract all search engines ad results at once using Python
Scrape Multiple Google Answer Box Layouts with Python
SerpApi’s Baidu Search API
How to reduce the chance of being blocked while web scraping search engines
'''

```

#### Extract title, link from dev.to feed

![Image description](https://dev-to-uploads.s3.amazonaws.com/uploads/articles/z0w6k10ac0hmdighfsn8.png)

Test `CSS` selector with either SelectorGadget or DevTools Console:

![Image description](https://dev-to-uploads.s3.amazonaws.com/uploads/articles/0corgea3vsx1yjsbj241.png)

Code:

```python
import requests, lxml
from bs4 import BeautifulSoup

headers = {
    "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36"
}

html = requests.get("https://dev.to/", headers=headers)
soup = BeautifulSoup(html.text, "lxml")

for result in soup.select(".crayons-story__title"):
    title = result.text.strip()
    link = f'https://dev.to{result.a["href"].strip()}'

    print(title, link, sep="\n")
    

# part of the output:
'''
How to Create and Publish a React Component Library
https://dev.to/alexeagleson/how-to-create-and-publish-a-react-component-library-2oe
A One Piece of CSS Art!
https://dev.to/afif/a-one-piece-of-css-art-225l
Windster - Tailwind CSS admin dashboard interface [MIT License]
https://dev.to/themesberg/windster-tailwind-css-admin-dashboard-interface-mit-license-3lb6
'''

```

## Links

- [W3C Level 4 CSS Selectors](https://drafts.csswg.org/selectors/)
- [MDN CSS Selectors](https://developer.mozilla.org/en-US/docs/Web/CSS/CSS%5FSelectors)
- [W3Schools CSS Selectors Reference](https://www.w3schools.com/cssref/css%5Fselectors.asp)
- [SelectorGadget](https://selectorgadget.com/)
- [CSS Dinner](https://flukeout.github.io/)
- [W3C CSS Specifications](https://developer.mozilla.org/en-US/docs/Web/CSS/CSS%5FSelectors#specifications)
- [BeautifulSoup CSS selectors docs](https://www.crummy.com/software/BeautifulSoup/bs4/doc/#css-selectors)

Join us on [Twitter](https://twitter.com/serp%5Fapi) | [YouTube](https://www.youtube.com/channel/UCUgIHlYBOD3yA3yDIRhg%5Fmg)