Skip to content

Commit d62c4e6

Browse files
committed
fix: address #1417 in the Python course
1 parent 42b2fd8 commit d62c4e6

File tree

3 files changed

+1
-7
lines changed

3 files changed

+1
-7
lines changed

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

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -65,13 +65,7 @@ document.querySelector('.product-item');
6565

6666
It will return the HTML element for the first product card in the listing:
6767

68-
![Using querySelector() in DevTools Console](./images/devtools-queryselector.png)
69-
70-
:::note About the missing semicolon
71-
72-
In the screenshot, there is a missing semicolon `;` at the end of the line. In JavaScript, semicolons are optional, so it doesn't make a difference here.
73-
74-
:::
68+
![Using querySelector() in DevTools Console](./images/devtools-queryselector.webp)
7569

7670
CSS selectors can get quite complex, but the basics are enough to scrape most of the Warehouse store. Let's cover two simple types and how they can combine.
7771

Binary file not shown.
55.9 KB
Loading

0 commit comments

Comments
 (0)