Skip to main content

Scrapy with selenium and more

Project description

Scrapy with selenium

PyPI Maintainability

Scrapy middleware to handle javascript pages using selenium.

Installation

$ pip install scrapy-selenium-enhanced

You should use python>=3.13. 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:
from shutil import which

SELENIUM_DRIVER_NAME = 'chrome'
SELENIUM_DRIVER_EXECUTABLE_PATH = which('chromedriver')
# '-headless' if using firefox instead of chrome
SELENIUM_DRIVER_ARGUMENTS=['--headless', f'user-agent={USER_AGENT}']

Optionally, set the path to the browser executable:

SELENIUM_BROWSER_EXECUTABLE_PATH = which('chrome')

In order to use a remote Selenium driver, specify SELENIUM_COMMAND_EXECUTOR instead of SELENIUM_DRIVER_EXECUTABLE_PATH:

SELENIUM_COMMAND_EXECUTOR = 'http://localhost:4444/wd/hub'
  1. Add the SeleniumMiddleware to the downloader middlewares:
DOWNLOADER_MIDDLEWARES = {
    'scrapy_selenium_enhanced.SeleniumMiddleware': 800
}

Usage

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

from scrapy_selenium_enhanced import SeleniumRequest
yield SeleniumRequest(url=url, callback=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.xpath('//title/@text'))

Additional arguments

The scrapy_selenium_enhanced.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=url,
    callback=self.parse_result,
    script='window.scrollTo(0, document.body.scrollHeight);',
)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

scrapy_selenium_enhanced-0.0.3.tar.gz (11.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

scrapy_selenium_enhanced-0.0.3-py3-none-any.whl (11.0 kB view details)

Uploaded Python 3

File details

Details for the file scrapy_selenium_enhanced-0.0.3.tar.gz.

File metadata

File hashes

Hashes for scrapy_selenium_enhanced-0.0.3.tar.gz
Algorithm Hash digest
SHA256 0bc74e218fa6b4cd13bdaee6a41bcfacff0fe1c721cb8ef3197fbef2a21b6f09
MD5 db2a28d06580d293a3e4e6f9a3f31d5f
BLAKE2b-256 e7bd5d12cb05def7faa8ee5a4188dd31c3a48651ef331e60314b6c5651d5b9bf

See more details on using hashes here.

File details

Details for the file scrapy_selenium_enhanced-0.0.3-py3-none-any.whl.

File metadata

File hashes

Hashes for scrapy_selenium_enhanced-0.0.3-py3-none-any.whl
Algorithm Hash digest
SHA256 43f148acdbddc16758776fa96816980abd7444ec6d4245382ac200b1f35bb0ec
MD5 bbd6b44d7a0f96d8ef923efec4b21bbc
BLAKE2b-256 1dd305bc59baec060e07582ebb03fbef6b838761bf256a13e60e27943f6d4c73

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page