diff --git a/meta.yaml b/meta.yaml index b5ca9be..8ee47fe 100644 --- a/meta.yaml +++ b/meta.yaml @@ -39,6 +39,6 @@ test: about: home: https://github.com/microsoft/playwright-pytest - summary: A pytest wrapper with fixtures for Playwright to automate web browsers + summary: A pytest wrapper with {% if package == 'pytest-playwright-asyncio' %} async{% endif %}fixtures for Playwright to automate web browsers license: Apache-2.0 license_file: LICENSE diff --git a/pytest-playwright-asyncio/README.md b/pytest-playwright-asyncio/README.md index 5ce3b33..de86fe8 100644 --- a/pytest-playwright-asyncio/README.md +++ b/pytest-playwright-asyncio/README.md @@ -1,4 +1,4 @@ -# Pytest plugin for Playwright [![PyPI](https://img.shields.io/pypi/v/pytest-playwright)](https://pypi.org/project/pytest-playwright/) +# Pytest plugin for Playwright [![PyPI](https://img.shields.io/pypi/v/pytest-playwright-asyncio)](https://pypi.org/project/pytest-playwright-asyncio/) Write end-to-end tests for your web apps with [Playwright](https://github.com/microsoft/playwright-python) and [pytest](https://docs.pytest.org/en/stable/). diff --git a/pytest-playwright-asyncio/pyproject.toml b/pytest-playwright-asyncio/pyproject.toml index 5118606..0f0b142 100644 --- a/pytest-playwright-asyncio/pyproject.toml +++ b/pytest-playwright-asyncio/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "pytest-playwright-asyncio" -description = "A pytest wrapper with fixtures for Playwright to automate web browsers" +description = "A pytest wrapper with async fixtures for Playwright to automate web browsers" readme = "README.md" authors = [ {name = "Microsoft"} diff --git a/pytest-playwright/README.md b/pytest-playwright/README.md index 5ce3b33..7310bb0 100644 --- a/pytest-playwright/README.md +++ b/pytest-playwright/README.md @@ -6,6 +6,8 @@ Write end-to-end tests for your web apps with [Playwright](https://github.com/mi - Support for **headless and headed** execution. - **Built-in fixtures** that provide browser primitives to test functions. +**Note**: If you are looking for an asyncio version of this plugin, check out [pytest-playwright-asyncio](https://pypi.org/project/pytest-playwright-asyncio/). + ## Documentation See on [playwright.dev](https://playwright.dev/python/docs/test-runners) for examples and more detailed information.