Testing with Playwright

Playwright’s tagline:

A couple of great videos to get you warmed up:

Then some links:

And an example tox config to get up and running:

[testenv:playwright]
basepython = python3.13
skip_install = true
deps =
    -r requirements.txt
    pytest
    pytest-django
    pytest-playwright

commands=
    playwright install
    python -Wall -m pytest --reuse-db {posargs}