https://github.com/kevlened/python-webdriver-stress-test
Stress test the Python Selenium WebDriver http://selenium-python.readthedocs.io/api.html
https://github.com/kevlened/python-webdriver-stress-test
Last synced: 4 months ago
JSON representation
Stress test the Python Selenium WebDriver http://selenium-python.readthedocs.io/api.html
- Host: GitHub
- URL: https://github.com/kevlened/python-webdriver-stress-test
- Owner: kevlened
- License: mit
- Created: 2018-05-22T00:08:08.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-05-22T01:40:28.000Z (over 7 years ago)
- Last Synced: 2025-01-21T05:42:35.944Z (9 months ago)
- Language: Python
- Homepage:
- Size: 3.91 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# python-webdriver-stress-test
This is designed to stress test the python selenium webdriver. It just opens and closes the browser.# Requirements
- Python 3.6
- pipenv
- chromedriver in your $PATH# Steps
```bash
git clone git@github.com:kevlened/python-webdriver-stress-test.git
cd python-webdriver-stress-test
pipenv install# in another shell:
chromedriver
# should display "Starting ChromeDriver 2.x.x (xxx) on port 9515"# return to the original shell
# to run across multiple processes
pipenv run parallel# or to run across multiple threads
pipenv run concurrent# optionally add --num to specify the number of instances (default is 20)
pipenv run parallel --num 40
```