-
Notifications
You must be signed in to change notification settings - Fork 128
/
Copy pathscroll.py
38 lines (32 loc) · 1.36 KB
/
scroll.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
from pathlib import Path
from scrapy import Spider, Request
from scrapy_playwright.page import PageMethod
class ScrollSpider(Spider):
"""Scroll down on an infinite-scroll page."""
name = "scroll"
custom_settings = {
"TWISTED_REACTOR": "twisted.internet.asyncioreactor.AsyncioSelectorReactor",
"DOWNLOAD_HANDLERS": {
# "https": "scrapy_playwright.handler.ScrapyPlaywrightDownloadHandler",
"http": "scrapy_playwright.handler.ScrapyPlaywrightDownloadHandler",
},
"LOG_LEVEL": "INFO",
}
def start_requests(self):
yield Request(
url="http://quotes.toscrape.com/scroll",
cookies={"foo": "bar", "asdf": "qwerty"},
meta={
"playwright": True,
"playwright_page_methods": [
PageMethod("wait_for_selector", "div.quote"),
PageMethod("evaluate", "window.scrollBy(0, document.body.scrollHeight)"),
PageMethod("wait_for_selector", "div.quote:nth-child(11)"), # 10 per page
PageMethod(
"screenshot", path=Path(__file__).parent / "scroll.png", full_page=True
),
],
},
)
def parse(self, response, **kwargs):
return {"url": response.url, "count": len(response.css("div.quote"))}