{"library":"pytest-playwright-asyncio","title":"pytest-playwright-asyncio","description":"A pytest plugin providing async fixtures for Playwright (via asyncio), enabling async/await browser automation in tests. Current version 0.7.2, requires Python >=3.10. Released as needed; follows pytest-playwright patterns.","language":"python","status":"active","last_verified":"Mon Apr 27","install":{"commands":["pip install pytest-playwright-asyncio"],"cli":null},"imports":["from pytest import mark"],"auth":{"required":false,"env_vars":[]},"quickstart":{"code":"import pytest\nfrom playwright.async_api import Page\n\npytest_plugins = ['pytest_playwright_asyncio']\n\nasync def test_example(page: Page):\n    await page.goto('https://example.com')\n    assert await page.title() == 'Example Domain'","lang":"python","description":"Basic async test using the page fixture. Ensure you have a conftest.py with the plugin import or set pytest_plugins.","tag":null,"tag_description":null,"last_tested":null,"results":[]},"compatibility":null}