We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 952729b commit 6eda491Copy full SHA for 6eda491
content/academy/web_scraping_for_beginners/challenge/initializing_and_setting_up.md
@@ -31,17 +31,6 @@ const crawler = new CheerioCrawler({
31
requestHandler: router,
32
});
33
34
-// Add our initial requests
35
-await crawler.addRequests([
36
- {
37
- // Turn the inputted keyword into a link we can make a request with
38
- url: `https://www.amazon.com/s/ref=nb_sb_noss?url=search-alias%3Daps&field-keywords=${keyword}`,
39
- label: 'START',
40
- userData: {
41
- keyword,
42
- },
43
44
-]);
45
46
log.info('Starting the crawl.');
47
await crawler.run([{
0 commit comments