MCPcopy Index your code
hub / github.com/clemfromspace/scrapy-selenium

github.com/clemfromspace/scrapy-selenium @0.0.7

Chat with this repo
repository ↗ · DeepWiki ↗ · release 0.0.7 ↗ · + Follow
21 symbols 78 edges 7 files 19 documented · 90%
What it actually does AI analysis from the code graph — generated when you open this
loading…
README

Scrapy with selenium

PyPI Build Status Test Coverage Maintainability

Scrapy middleware to handle javascript pages using selenium.

Installation

$ pip install scrapy-selenium

You should use python>=3.6. You will also need one of the Selenium compatible browsers.

Configuration

  1. Add the browser to use, the path to the driver executable, and the arguments to pass to the executable to the scrapy settings: ```python from shutil import which

    SELENIUM_DRIVER_NAME = 'firefox' SELENIUM_DRIVER_EXECUTABLE_PATH = which('geckodriver') SELENIUM_DRIVER_ARGUMENTS=['-headless'] # '--headless' if using chrome instead of firefox ```

Optionally, set the path to the browser executable: python SELENIUM_BROWSER_EXECUTABLE_PATH = which('firefox')

  1. Add the SeleniumMiddleware to the downloader middlewares: python DOWNLOADER_MIDDLEWARES = { 'scrapy_selenium.SeleniumMiddleware': 800 }

Usage

Use the scrapy_selenium.SeleniumRequest instead of the scrapy built-in Request like below:

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.

def parse_result(self, response):
    print(response.request.meta['driver'].title)

For more information about the available driver methods and attributes, refer to the selenium python documentation

The selector response attribute work as usual (but contains the html processed by the selenium driver).

def parse_result(self, response):
    print(response.selector.xpath('//title/@text'))

Additional arguments

The scrapy_selenium.SeleniumRequest accept 4 additional arguments:

wait_time / wait_until

When used, selenium will perform an Explicit wait before returning the response to the spider.

from selenium.webdriver.common.by import By
from selenium.webdriver.support import expected_conditions as EC

yield SeleniumRequest(
    url=url,
    callback=self.parse_result,
    wait_time=10,
    wait_until=EC.element_to_be_clickable((By.ID, 'someid'))
)

screenshot

When used, selenium will take a screenshot of the page and the binary data of the .png captured will be added to the response meta:

yield SeleniumRequest(
    url=url,
    callback=self.parse_result,
    screenshot=True
)

def parse_result(self, response):
    with open('image.png', 'wb') as image_file:
        image_file.write(response.meta['screenshot'])

script

When used, selenium will execute custom JavaScript code.

yield SeleniumRequest(
    url,
    self.parse_result,
    script='window.scrollTo(0, document.body.scrollHeight);',
)

Core symbols most depended-on inside this repo

process_request
called by 4
scrapy_selenium/middlewares.py
from_crawler
called by 3
scrapy_selenium/middlewares.py
get_requirements
called by 1
setup.py
spider_closed
called by 1
scrapy_selenium/middlewares.py

Shape

Method 15
Class 5
Function 1

Languages

Python100%

Modules by API surface

tests/test_middlewares.py9 symbols
scrapy_selenium/middlewares.py5 symbols
tests/test_cases.py4 symbols
scrapy_selenium/http.py2 symbols
setup.py1 symbols

For agents

$ claude mcp add scrapy-selenium \
  -- python -m otcore.mcp_server <graph>

⬇ download graph artifact