Skip to content

Commit 8736e24

Browse files
Apply suggestions from code review
Co-authored-by: Honza Javorek <[email protected]>
1 parent bd30fb5 commit 8736e24

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

sources/academy/webscraping/puppeteer_playwright/executing_scripts/extracting_data.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Now that we know how to execute scripts on a page, we're ready to learn a bit ab
1919
1. Directly in `page.evaluate()` and other evaluate functions such as `page.$$eval()`.
2020
2. In the Node.js context using a parsing library such as [Cheerio](https://www.npmjs.com/package/cheerio)
2121

22-
::: tip
22+
:::tip Crawlee and parsing with Cheerio
2323

2424
If you are using Crawlee, we highly recommend the [parseWithCheerio](https://crawlee.dev/api/playwright-crawler/interface/PlaywrightCrawlingContext#parseWithCheerio) function for unified data extraction syntax. This way, switching between browser and plain HTTP scraping is a breeze.
2525

sources/academy/webscraping/puppeteer_playwright/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,13 @@ Both packages were developed by the same team and are very similar, which is why
2525

2626
When automating a headless browser, you can do a whole lot more in comparison to making HTTP requests for static content. In fact, you can programmatically do pretty much anything a human could do with a browser, such as clicking elements, taking screenshots, typing into text areas, etc.
2727

28-
Additionally, since the requests aren't static, [dynamic content](../../glossary/concepts/dynamic_pages.md) can be rendered and interacted with (or, data from the dynamic content can be scraped). [Headful](https://playwright.dev/docs/api/class-testoptions#test-options-headless) (`headless: false`) mode to see exactly what the browser is doing.
28+
Additionally, since the requests aren't static, [dynamic content](../../glossary/concepts/dynamic_pages.md) can be rendered and interacted with (or, data from the dynamic content can be scraped). Turn on the [headful mode](https://playwright.dev/docs/api/class-testoptions#test-options-headless) (`headless: false`) to see exactly what the browser is doing.
2929

3030
Browsers can also be effective for [overcoming anti-scraping measures](../anti_scraping/index.md), especially if the website is running [JavaScript browser challenges](../anti_scraping/techniques/browser_challenges.md).
3131

3232
## Disadvantages of headless browsers
3333

34-
Browsers are slow and expensive to run. In the follow-up courses, the Apify Academy will show you how to scrape websites without a browser. Every website can potentially be reverse-engineered into a series of quick and cheap HTTP calls but it might require significant effort and specialized knowledge.
34+
Browsers are slow and expensive to run. In the follow-up courses, the Apify Academy will show you how to scrape websites without a browser. Every website can potentially be reverse-engineered into a series of quick and cheap HTTP calls, but it might require significant effort and specialized knowledge.
3535

3636
## Setup {#setup}
3737

0 commit comments

Comments
 (0)