Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion dotnet/docs/intro.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ See our doc on [Running and Debugging Tests](./running-tests.mdx) to learn more
- Playwright is distributed as a .NET Standard 2.0 library. We recommend .NET 8.
- Windows 10+, Windows Server 2016+ or Windows Subsystem for Linux (WSL).
- macOS 14 Ventura, or later.
- Debian 12, Ubuntu 22.04, Ubuntu 24.04, on x86-64 and arm64 architecture.
- Debian 12, Debian 13, Ubuntu 22.04, Ubuntu 24.04, on x86-64 and arm64 architecture.

## What's next
- [Write tests using web first assertions, page fixtures and locators](./writing-tests.mdx)
Expand Down
2 changes: 1 addition & 1 deletion java/docs/intro.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ By default browsers launched with Playwright run headless, meaning no browser UI
- Java 8 or higher.
- Windows 10+, Windows Server 2016+ or Windows Subsystem for Linux (WSL).
- macOS 14 Ventura, or later.
- Debian 12, Ubuntu 22.04, Ubuntu 24.04, on x86-64 and arm64 architecture.
- Debian 12, Debian 13, Ubuntu 22.04, Ubuntu 24.04, on x86-64 and arm64 architecture.

## What's next
- [Write tests using web first assertions, page fixtures and locators](./writing-tests.mdx)
Expand Down
2 changes: 1 addition & 1 deletion nodejs/docs/intro.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ pnpm exec playwright --version
- Latest version of Node.js 20, 22 or 24.
- Windows 10+, Windows Server 2016+ or Windows Subsystem for Linux (WSL).
- macOS 14 Ventura, or later.
- Debian 12, Ubuntu 22.04, Ubuntu 24.04, on x86-64 and arm64 architecture.
- Debian 12, Debian 13, Ubuntu 22.04, Ubuntu 24.04, on x86-64 and arm64 architecture.

## What's next
- [Write tests using web first assertions, page fixtures and locators](./writing-tests.mdx)
Expand Down
8 changes: 4 additions & 4 deletions python/docs/api/class-page.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ page.get_by_role("button", name="Start here").click()

```py
# Setup the handler.
def handler():
async def handler():
await page.get_by_role("button", name="No thanks").click()
await page.add_locator_handler(page.get_by_text("Sign up to the newsletter"), handler)

Expand Down Expand Up @@ -243,7 +243,7 @@ page.get_by_role("button", name="Start here").click()

```py
# Setup the handler.
def handler():
async def handler():
await page.get_by_role("button", name="Remind me later").click()
await page.add_locator_handler(page.get_by_text("Confirm your security details"), handler)

Expand Down Expand Up @@ -283,7 +283,7 @@ page.get_by_role("button", name="Start here").click()

```py
# Setup the handler.
def handler():
async def handler():
await page.evaluate("window.removeObstructionsForTestIfNeeded()")
await page.add_locator_handler(page.locator("body"), handler, no_wait_after=True)

Expand Down Expand Up @@ -317,7 +317,7 @@ page.add_locator_handler(page.get_by_label("Close"), handler, times=1)
<TabItem value="async">

```py
def handler(locator):
async def handler(locator):
await locator.click()
await page.add_locator_handler(page.get_by_label("Close"), handler, times=1)
```
Expand Down
2 changes: 1 addition & 1 deletion python/docs/intro.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ pip install pytest-playwright playwright -U
- Python 3.8 or higher.
- Windows 10+, Windows Server 2016+ or Windows Subsystem for Linux (WSL).
- macOS 14 Ventura, or later.
- Debian 12, Ubuntu 22.04, Ubuntu 24.04, on x86-64 and arm64 architecture.
- Debian 12, Debian 13, Ubuntu 22.04, Ubuntu 24.04, on x86-64 and arm64 architecture.

## What's next
- [Write tests using web first assertions, page fixtures and locators](./writing-tests.mdx)
Expand Down
Loading