An open API service indexing awesome lists of open source software.

https://github.com/arjunattam/try-playwright-python


https://github.com/arjunattam/try-playwright-python

Last synced: about 1 year ago
JSON representation

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
```