From c0ed4dd23cc837492dff5e5539f0b60858f4075a Mon Sep 17 00:00:00 2001 From: cpadm <57954026+cpAdm@users.noreply.github.com> Date: Tue, 31 Mar 2026 09:37:28 +0200 Subject: [PATCH 1/3] docs: Correct name for macOS --- docs/src/intro-csharp.md | 10 +++++----- docs/src/intro-java.md | 2 +- docs/src/intro-js.md | 2 +- docs/src/intro-python.md | 2 +- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/docs/src/intro-csharp.md b/docs/src/intro-csharp.md index a89a42ca83036..af3208f701c9c 100644 --- a/docs/src/intro-csharp.md +++ b/docs/src/intro-csharp.md @@ -159,7 +159,7 @@ public class ExampleTest : PageTest // Expects page to have a heading with the name of Installation. await Expect(Page.GetByRole(AriaRole.Heading, new() { Name = "Installation" })).ToBeVisibleAsync(); - } + } } ``` @@ -195,7 +195,7 @@ public class ExampleTest : PageTest // Expects page to have a heading with the name of Installation. await Expect(Page.GetByRole(AriaRole.Heading, new() { Name = "Installation" })).ToBeVisibleAsync(); - } + } } ``` @@ -230,7 +230,7 @@ public class UnitTest1: PageTest // Expects page to have a heading with the name of Installation. await Expect(Page.GetByRole(AriaRole.Heading, new() { Name = "Installation" })).ToBeVisibleAsync(); - } + } } ``` @@ -264,7 +264,7 @@ public class UnitTest1: PageTest // Expects page to have a heading with the name of Installation. await Expect(Page.GetByRole(AriaRole.Heading, new() { Name = "Installation" })).ToBeVisibleAsync(); - } + } } ``` @@ -285,7 +285,7 @@ See our doc on [Running and Debugging Tests](./running-tests.md) to learn more a - Playwright is distributed as a .NET Standard 2.0 library. We recommend .NET 8. - Windows 11+, Windows Server 2019+ or Windows Subsystem for Linux (WSL). -- macOS 14 Ventura, or later. +- macOS 14 Sonoma, or later. - Debian 12, Debian 13, Ubuntu 22.04, Ubuntu 24.04, on x86-64 and arm64 architecture. ## What's next diff --git a/docs/src/intro-java.md b/docs/src/intro-java.md index 00826c2f8fe8f..2b42e09616a3c 100644 --- a/docs/src/intro-java.md +++ b/docs/src/intro-java.md @@ -130,7 +130,7 @@ By default browsers launched with Playwright run headless, meaning no browser UI - Java 8 or higher. - Windows 11+, Windows Server 2019+ or Windows Subsystem for Linux (WSL). -- macOS 14 Ventura, or later. +- macOS 14 Sonoma, or later. - Debian 12, Debian 13, Ubuntu 22.04, Ubuntu 24.04, on x86-64 and arm64 architecture. ## What's next diff --git a/docs/src/intro-js.md b/docs/src/intro-js.md index 68c0a649eebe3..69e0c25654f3c 100644 --- a/docs/src/intro-js.md +++ b/docs/src/intro-js.md @@ -304,7 +304,7 @@ pnpm exec playwright --version - Node.js: latest 20.x, 22.x or 24.x. - Windows 11+, Windows Server 2019+ or Windows Subsystem for Linux (WSL). -- macOS 14 (Ventura) or later. +- macOS 14 (Sonoma) or later. - Debian 12 / 13, Ubuntu 22.04 / 24.04 (x86-64 or arm64). ## What's next diff --git a/docs/src/intro-python.md b/docs/src/intro-python.md index 4045b6f4207de..8edb444eadd3e 100644 --- a/docs/src/intro-python.md +++ b/docs/src/intro-python.md @@ -101,7 +101,7 @@ pip install pytest-playwright playwright -U - Python 3.8 or higher. - Windows 11+, Windows Server 2019+ or Windows Subsystem for Linux (WSL). -- macOS 14 Ventura, or later. +- macOS 14 Sonoma, or later. - Debian 12, Debian 13, Ubuntu 22.04, Ubuntu 24.04, on x86-64 and arm64 architecture. ## What's next From dcb11d06664404f8ef9e2d141da2e0f086104850 Mon Sep 17 00:00:00 2001 From: Chris <57954026+cpAdm@users.noreply.github.com> Date: Wed, 1 Apr 2026 09:17:35 +0200 Subject: [PATCH 2/3] docs: Revert prettier --- docs/src/intro-csharp.md | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/docs/src/intro-csharp.md b/docs/src/intro-csharp.md index af3208f701c9c..25ebeab1d222d 100644 --- a/docs/src/intro-csharp.md +++ b/docs/src/intro-csharp.md @@ -159,7 +159,7 @@ public class ExampleTest : PageTest // Expects page to have a heading with the name of Installation. await Expect(Page.GetByRole(AriaRole.Heading, new() { Name = "Installation" })).ToBeVisibleAsync(); - } + } } ``` @@ -195,7 +195,7 @@ public class ExampleTest : PageTest // Expects page to have a heading with the name of Installation. await Expect(Page.GetByRole(AriaRole.Heading, new() { Name = "Installation" })).ToBeVisibleAsync(); - } + } } ``` @@ -230,7 +230,7 @@ public class UnitTest1: PageTest // Expects page to have a heading with the name of Installation. await Expect(Page.GetByRole(AriaRole.Heading, new() { Name = "Installation" })).ToBeVisibleAsync(); - } + } } ``` @@ -263,8 +263,7 @@ public class UnitTest1: PageTest await Page.GetByRole(AriaRole.Link, new() { Name = "Get started" }).ClickAsync(); // Expects page to have a heading with the name of Installation. - await Expect(Page.GetByRole(AriaRole.Heading, new() { Name = "Installation" })).ToBeVisibleAsync(); - } + await Expect(Page.GetByRole(AriaRole.Heading, new() { Name = "Installation" })).ToBeVisibleAsync } ``` From 9fe69fc02097b95d042f3f977cc9c0a2a5a2e56b Mon Sep 17 00:00:00 2001 From: Chris <57954026+cpAdm@users.noreply.github.com> Date: Wed, 1 Apr 2026 09:18:31 +0200 Subject: [PATCH 3/3] docs: revert --- docs/src/intro-csharp.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/src/intro-csharp.md b/docs/src/intro-csharp.md index 25ebeab1d222d..9b2bef092d101 100644 --- a/docs/src/intro-csharp.md +++ b/docs/src/intro-csharp.md @@ -263,7 +263,8 @@ public class UnitTest1: PageTest await Page.GetByRole(AriaRole.Link, new() { Name = "Get started" }).ClickAsync(); // Expects page to have a heading with the name of Installation. - await Expect(Page.GetByRole(AriaRole.Heading, new() { Name = "Installation" })).ToBeVisibleAsync + await Expect(Page.GetByRole(AriaRole.Heading, new() { Name = "Installation" })).ToBeVisibleAsync(); + } } ```