Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wooyek/docker-py-selenium
Docker to run selenium tests from python
https://github.com/wooyek/docker-py-selenium
Last synced: 4 days ago
JSON representation
Docker to run selenium tests from python
- Host: GitHub
- URL: https://github.com/wooyek/docker-py-selenium
- Owner: wooyek
- License: mit
- Created: 2017-06-01T10:13:22.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-01-08T11:52:45.000Z (about 7 years ago)
- Last Synced: 2024-11-10T09:43:27.312Z (2 months ago)
- Language: Python
- Size: 3.83 MB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Docker to run selenium tests from python
Test environment for Selenium tests driven by python scripts. Version 0.9.9
[![Docker Pulls](https://img.shields.io/docker/pulls/wooyek/py-selenium.svg)](https://hub.docker.com/r/wooyek/geodjango/)
[![Docker Stars](https://img.shields.io/docker/stars/wooyek/py-selenium.svg)](https://hub.docker.com/r/wooyek/py-selenium/)
[![Docker Automated build](https://img.shields.io/docker/automated/wooyek/py-selenium.svg)](https://hub.docker.com/r/wooyek/py-selenium/)## BitBucket Pipelines support
You can use this as a test image with BitBucket Pipelines, an example:
```
image: wooyek/py-seleniumpipelines:
default:
- step:
script:
# Pipelines overrides default docker entry point, we need to run it maually
- py-selenium-entrypoint.sh
- python -m unittest discover -p "*_tests.py"
```