Skip to main content

Scrapy with selenium4.

Project description

Scrapy with selenium4

PyPI

Scrapy middleware to handle javascript pages using selenium >= 4.0.0.

Installation

$ pip install scrapy-selenium4

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

Configuration

Add the browser to use, the path to the driver executable, and the arguments to pass to the executable to the scrapy settings.py:

from shutil import which

SELENIUM_DRIVER_NAME = 'chrome'
SELENIUM_DRIVER_EXECUTABLE_PATH = which('chromedriver')
# The Best arguments for chrome headless
SELENIUM_DRIVER_ARGUMENTS=[
    '--headless=new',
    '--no-sandbox',
    '--disable-gpu',
    '--window-size=1280,1696',
    '--disable-blink-features',
    '--disable-blink-features=AutomationControlled',
    '--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36"',
]

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

# In order to use a remote Selenium driver, specify SELENIUM_COMMAND_EXECUTOR instead of SELENIUM_DRIVER_EXECUTABLE_PATH.
# `SELENIUM_DRIVER_EXECUTABLE_PATH` must be commented.
SELENIUM_COMMAND_EXECUTOR = 'http://localhost:4444/wd/hub'

# Add the `SeleniumMiddleware` to the downloader middlewares
DOWNLOADER_MIDDLEWARES = {
    'scrapy_selenium4.SeleniumMiddleware': 800
}

Usage

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

from scrapy_selenium4 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.selector.xpath('//title/@text'))

Additional arguments

The scrapy_selenium4.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'])

New way to screenshot:

yield SeleniumRequest(
    url=url,
    callback=self.parse_result,
    screenshot=f'image.png'
)

def parse_result(self, response):
    pass

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_selenium4-1.0.1rc1.tar.gz (7.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_selenium4-1.0.1rc1-py2.py3-none-any.whl (5.8 kB view details)

Uploaded Python 2Python 3

File details

Details for the file scrapy_selenium4-1.0.1rc1.tar.gz.

File metadata

  • Download URL: scrapy_selenium4-1.0.1rc1.tar.gz
  • Upload date:
  • Size: 7.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.10.10

File hashes

Hashes for scrapy_selenium4-1.0.1rc1.tar.gz
Algorithm Hash digest
SHA256 d4436aa6b6ddfe7b3dd1e35309043dfb7a9ce71060b988d05ff9df0705be9b41
MD5 41360d312dbb474bc954aa99389e84eb
BLAKE2b-256 3b25cec430d9f9d4444bdae9ce870d78b8775ac530a396e942136139df0d1aa8

See more details on using hashes here.

File details

Details for the file scrapy_selenium4-1.0.1rc1-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for scrapy_selenium4-1.0.1rc1-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 56d9e3fdcdf9266143401dc7f56fd7b72ea830fe55bbc97ca6aa72d9064ade23
MD5 cdfb5cc37d1032cac96277dfb1e0fa1b
BLAKE2b-256 7e372b7883cbfebf1b9c3f6345425f8497baaa882c6218310cf3eb57c1a80a4f

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