Script to install the latest versions of chromedriver and geckodriver on travis
Project description
install-webdrivers
Easy-to-use script to install the latest versions of chromedriver and geckodriver on Travis-CI.
Installation
You can install this command directly from PyPI using pip as follows:
$ pip install tchappui-webdrivers
User guide
After having installed tchappui-webdrivers from PyPI, simply install the last stable versions of chromedriver and geckdriver using the install-webdrivers command. Here is a sample .travis.yml file as an example django project:
dist: bionic language: python python: - '3.8' addons: # ajouter uniquement les navigateurs utilisés chrome: stable firefox: latest branches: only: - staging install: - pip install tchappui-webdrivers before_script: - install-webdrivers --path /usr/local/bin/ env: global: # we suppose the settings for Travis are in a dedicated file - DJANGO_SETTINGS_MODULE="config.settings.travis" services: - postgresql script: - python manage.py test
Then, in your tests, start both chrome and firefox in headless mode:
from selenium import webdriver
chrome_options = webdriver.ChromeOptions()
chrome_options.add_argument('--headless')
chrome_options.add_argument('--disable-gpu')
chrome_options.add_argument('--remote-debugging-port=9222')
chrome_options.add_argument('--window-size=1920x1080')
firefox_options = webdriver.FirefoxOptions()
firefox_options.headless = True
firefox_options.add_argument('--window-size=1920x1080')
History
0.1.0 (2020-05-01)
First release on PyPI.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
tchappui-webdrivers-0.3.4.tar.gz
(16.5 kB
view hashes)
Built Distribution
Close
Hashes for tchappui-webdrivers-0.3.4.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 95c46c8e6b06ef2353b42eab0cb8a6dae634e587e9cd5c88dcdc9afc9c72c9f5 |
|
MD5 | d0f818e96f45a342d188995ea053fc55 |
|
BLAKE2b-256 | 8691f8d9396244c14f74134674f9ca7ed5777d0d1b9117afb2688a315c6886fa |
Close
Hashes for tchappui_webdrivers-0.3.4-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6a2c4c0e998c8ea747829516bba875d42bbe592c4b2985ea23eb9770423474e8 |
|
MD5 | 2ab957968888334199a52bf2b3ee6da4 |
|
BLAKE2b-256 | 6cff011f7ec2d81d7faa3f80bbfbbec83fb84897cd06714b308cc18818d19386 |