Skip to content

Commit 46cd811

Browse files
committed
fix: be consistent, use 'title' (not both 'title' and 'name')
1 parent 376a5fc commit 46cd811

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

sources/academy/webscraping/scraping_basics_python/02_devtools_locating_elements.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,13 @@ As mentioned in the previous lesson, before building a scraper, we need to under
3131

3232
![Warehouse store with DevTools open](./images/devtools-warehouse.png)
3333

34-
The page displays a grid of product cards, each showing a product's name and picture. Open DevTools and locate the name of the **Sony SACS9 Active Subwoofer**. Highlight it in the **Elements** tab by clicking on it.
34+
The page displays a grid of product cards, each showing a product's title and picture. Open DevTools and locate the title of the **Sony SACS9 Active Subwoofer**. Highlight it in the **Elements** tab by clicking on it.
3535

36-
![Selecting an element with DevTools](./images/devtools-product-name.png)
36+
![Selecting an element with DevTools](./images/devtools-product-title.png)
3737

3838
Next, let's find all the elements containing details about this subwoofer—its price, number of reviews, image, and more.
3939

40-
In the **Elements** tab, move your cursor up from the `a` element containing the subwoofer's name. On the way, hover over each element until you highlight the entire product card. Alternatively, use the arrow-up key. The `div` element you land on is the **parent element**, and all nested elements are its **child elements**.
40+
In the **Elements** tab, move your cursor up from the `a` element containing the subwoofer's title. On the way, hover over each element until you highlight the entire product card. Alternatively, use the arrow-up key. The `div` element you land on is the **parent element**, and all nested elements are its **child elements**.
4141

4242
![Selecting an element with hover](./images/devtools-hover-product.png)
4343

0 commit comments

Comments
 (0)