https://github.com/pytest-with-eric/pytest-selenium-example
How To Use Pytest With Selenium For Web Automation Testing
https://github.com/pytest-with-eric/pytest-selenium-example
pytest-plugin pytest-selenium selenium-python selenium-tests selenium-webdriver
Last synced: 3 months ago
JSON representation
How To Use Pytest With Selenium For Web Automation Testing
- Host: GitHub
- URL: https://github.com/pytest-with-eric/pytest-selenium-example
- Owner: Pytest-with-Eric
- Created: 2024-02-14T09:34:55.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-02-19T08:05:48.000Z (over 1 year ago)
- Last Synced: 2025-01-29T12:29:45.075Z (5 months ago)
- Topics: pytest-plugin, pytest-selenium, selenium-python, selenium-tests, selenium-webdriver
- Language: Python
- Homepage: https://pytest-with-eric.com/automation/pytest-selenium/
- Size: 21.5 KB
- Stars: 2
- Watchers: 0
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Pytest Selenium WebDriver Example
This repo contains the sample code for the article - [How To Use Pytest With Selenium For Web Automation Testing](https://pytest-with-eric.com/automation/pytest-selenium/).# Requirements
* Python (3.12)Please install the dependencies via the `Pipfile` file using
```bash
$ pipenv shell
$ pipenv install --dev
```
If you don't have Pip installed, please follow instructions online on how to do it.See [this guide](https://realpython.com/pipenv-guide/) for instructions how to use Pipenv.
# How To Run the Unit Tests
To run the Unit Tests from the root of the repo, run
```bash
pytest -v
```If you have any questions about the project, please raise an Issue on GitHub.