Skip to main content

Selenium Grid managed downloads plugin for Robot Framework SeleniumLibrary

Project description

Python Package CI

"Buy Me A Coffee"

SeleniumLibrary Grid Downloader Plugin

Robot Framework Python License

GridDownloader is a SeleniumLibrary plugin for Robot Framework that retrieves files downloaded by a remote browser running on Selenium Grid.

It uses Selenium Grid managed downloads and Selenium Python's command executor, so Grid URL paths, authentication, proxies, TLS, and session handling stay aligned with Selenium itself.

Requirements

  • Python 3.11 or newer
  • Robot Framework 7.4.2 or newer
  • SeleniumLibrary 6.9.0 or newer
  • Selenium 4.29.0 through 4.44.x, matching the SeleniumLibrary 6.9.0 supported range
  • Selenium Grid 4 with managed downloads enabled on the Node:
java -jar selenium-server-<version>.jar node --enable-managed-downloads true

Selenium Grid managed downloads currently support Chrome, Edge, and Firefox. Files must be listed or downloaded while the browser session is still active because Grid cleans the session download directory when the session ends.

Install

pip install -U robotframework-selenium-grid-downloader

Keywords Documentation

Keywords documentation can be found here.

Example Usage

*** Settings ***
Library   SeleniumLibrary  plugins=GridDownloader
Test Teardown  Close All Browsers

*** Variables ***
${BROWSER}           chrome
${URL}               https://www.example.com
${OPTIONS}           platform_name="windows"
${GRID_URL}          http://grid.example.com:4444/wd/hub
${DOWNLOAD_LINK}     xpath=//a[@id='download']
${FILENAME}          file1.txt
${EXPECTED_CONTENT}  Hello World

*** Test Cases ***
Download File And Check Content
    Open Browser    ${URL}    ${BROWSER}    remote_url=${GRID_URL}    options=${OPTIONS}
    Click Element   ${DOWNLOAD_LINK}
    Wait Until File Is Available To Download    ${FILENAME}    timeout=30 seconds    wait_step=1 second
    @{downloaded_files}=    Get List Of Downloaded Files
    Should Contain    ${downloaded_files}    ${FILENAME}
    ${content}=    Download File From Grid    ${FILENAME}
    ${content_text}=    Evaluate    $content.decode("utf-8")
    Should Be Equal As Strings    ${content_text}    ${EXPECTED_CONTENT}
    Delete Downloaded Files From Grid

Capability Activation

By default, the plugin wraps SeleniumLibrary's Open Browser keyword and adds se:downloadsEnabled=True to Selenium options.

Automatic activation can be disabled:

Library   SeleniumLibrary  plugins=GridDownloader;activate_capability=No

When activation is disabled, set the capability yourself:

${OPTIONS}    enable_downloads=True
Open Browser    ${URL}    chrome    remote_url=${GRID_URL}    options=${OPTIONS}

Keywords

  • Get List Of Downloaded Files returns file names available for the active Grid session.
  • Wait Until File Is Available To Download polls the Grid session until the named file is available.
  • Download File From Grid downloads the file to Robot Framework's output directory by default and returns its bytes.
  • Delete Downloaded Files From Grid removes downloadable files for the active Grid session.

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

robotframework_selenium_grid_downloader-1.0.2.tar.gz (110.7 kB view details)

Uploaded Source

Built Distribution

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

File details

Details for the file robotframework_selenium_grid_downloader-1.0.2.tar.gz.

File metadata

File hashes

Hashes for robotframework_selenium_grid_downloader-1.0.2.tar.gz
Algorithm Hash digest
SHA256 4063472e34fbdeb2310b0f5449250bc97dbb9c7554998cd5620d0a5db8e47b4b
MD5 d8c94287202fd13bd85d3081a7ec0f86
BLAKE2b-256 b6c5d73c054b12f55e70daea2f1ef022a338422fdfce71086608825a32f0ce82

See more details on using hashes here.

File details

Details for the file robotframework_selenium_grid_downloader-1.0.2-py3-none-any.whl.

File metadata

File hashes

Hashes for robotframework_selenium_grid_downloader-1.0.2-py3-none-any.whl
Algorithm Hash digest
SHA256 df1e45522429391ac6df457f45c0176fb0fddbea1d6959bbfc179177f94c4867
MD5 3e095d014d4b7a86abaf3566ac6d9b71
BLAKE2b-256 c039ee5dd1f9bb9628058de226a2f024870f39c268470796bd11c604fef643ff

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