Skip to content

Commit 436dd20

Browse files
committed
Add note
1 parent 70e8e91 commit 436dd20

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

content/academy/web_scraping_for_beginners/challenge/scraping_amazon.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,8 @@ Here's what this page looks like:
4747

4848
Wow, that's ugly. But for our scenario, this is really great. When we click the **View offers** button, we usually have to wait for the offers to load and render, which would mean we could have to switch our entire crawler to a **PuppeteerCrawler** or **PlaywrightCrawler**. The data on this page we've just found appears to be loaded statically, which means we can still use CheerioCrawler and keep the scraper as efficient as possible 😎
4949

50+
> It's totally possible to scrape the same data as this crawler using [Puppeteer or Playwright]({{@link puppeteer_playwright.md}}); however, with this offers link found in Postman, we can follow the same workflow much more quickly with static HTTP requests using CheerioCrawler.
51+
5052
First, we'll create a request for each product's offers page:
5153

5254
```JavaScript

0 commit comments

Comments
 (0)