scrapy-selenium - PyPI
https://pypi.org/project/scrapy-selenium24.01.2019 · Use the `scrapy_selenium.SeleniumRequest` instead of the scrapy built-in `Request` like below: ```python from scrapy_selenium import SeleniumRequest yield SeleniumRequest(url, self.parse_result) ``` The request will be handled by selenium, and the request will have an additional `meta` key, named `driver` containing the selenium driver with the ...
scrapy-selenium · PyPI
pypi.org › project › scrapy-seleniumJan 24, 2019 · from scrapy_selenium import SeleniumRequest yield SeleniumRequest(url, self.parse_result) The request will be handled by selenium, and the request will have an additional `meta` key, named `driver` containing the selenium driver with the request processed.