https://github.com/arjunattam/try-playwright-python
https://github.com/arjunattam/try-playwright-python
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/arjunattam/try-playwright-python
- Owner: arjunattam
- Created: 2020-09-29T23:33:59.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-09-29T23:35:35.000Z (over 5 years ago)
- Last Synced: 2024-10-18T07:17:28.250Z (over 1 year ago)
- Language: Python
- Size: 2.93 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Demo for playwright-python
## Usage
Run tests with pytest
```
pytest
```
## Development
Ensure that pyenv is installed.
```sh
# Create a virtualenv
pyenv virtualenv 3.8.0 py-demo
# Activate the virtualenv
pyenv activate py-demo
# Install dependencies
pip install pytest playwright pytest-playwright
python -m playwright install
# Run the tests
pytest
```