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.3.tar.gz
(16.5 kB
view hashes)
Built Distribution
Close
Hashes for tchappui-webdrivers-0.3.3.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4cf8d438d44cd28f5f82d253b80633844afa2eb04f93d9e08d809a4766c1a231 |
|
MD5 | 8748756e0c1c0b63306af5b77d6b7a09 |
|
BLAKE2b-256 | f002a18cb0ccdb3ecc4d1bc05c068658c5f3dcbd82fe375524c70db4a2889342 |
Close
Hashes for tchappui_webdrivers-0.3.3-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9c30d21f558dc249efb6d2006e7cfefe17e8c140b8a048c5ca18557cfeedc37a |
|
MD5 | 17d64b06624142ca89e762939156630d |
|
BLAKE2b-256 | 08d088dfb8ce2cacac0fe73406e591ed730b506a11cd58b886fc7309967b3b41 |