From 8cc862c614a629c87ff4db1054feeb72a2f9a0b1 Mon Sep 17 00:00:00 2001 From: Pavel Feldman Date: Thu, 9 Dec 2021 17:14:30 -0800 Subject: [PATCH] docs(dotnet): suggest using pwsh (#10844) --- docs/src/cli.md | 10 +++++----- docs/src/intro-csharp.md | 6 +++--- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/docs/src/cli.md b/docs/src/cli.md index 7417b5ea94..63a21d2b58 100644 --- a/docs/src/cli.md +++ b/docs/src/cli.md @@ -98,7 +98,7 @@ playwright install --help ``` ```bash csharp -bin\Debug\netX\playwright.ps1 install --help +pwsh bin\Debug\netX\playwright.ps1 install --help ``` ## Generate code @@ -116,7 +116,7 @@ playwright codegen wikipedia.org ``` ```bash csharp -bin\Debug\netX\playwright.ps1 codegen wikipedia.org +pwsh bin\Debug\netX\playwright.ps1 codegen wikipedia.org ``` Run `codegen` and perform actions in the browser. Playwright CLI will generate JavaScript code for the user interactions. `codegen` will attempt to generate resilient text-based selectors. @@ -146,7 +146,7 @@ playwright codegen --save-storage=auth.json ``` ```bash csharp -bin\Debug\netX\playwright.ps1 codegen --save-storage=auth.json +pwsh bin\Debug\netX\playwright.ps1 codegen --save-storage=auth.json # Perform authentication and exit. # auth.json will contain the storage state. ``` @@ -173,7 +173,7 @@ playwright codegen --load-storage=auth.json my.web.app ``` ```bash csharp -bin\Debug\netX\playwright.ps1 open --load-storage=auth.json my.web.app +pwsh bin\Debug\netX\playwright.ps1 open --load-storage=auth.json my.web.app playwright codegen --load-storage=auth.json my.web.app # Perform actions in authenticated state. ``` @@ -581,5 +581,5 @@ playwright install-deps chromium ``` ```bash csharp -bin\Debug\netX\playwright.ps1 install-deps chromium +pwsh bin\Debug\netX\playwright.ps1 install-deps chromium ``` diff --git a/docs/src/intro-csharp.md b/docs/src/intro-csharp.md index 166dc8cde6..25cf363729 100644 --- a/docs/src/intro-csharp.md +++ b/docs/src/intro-csharp.md @@ -20,7 +20,7 @@ dotnet add package Microsoft.Playwright # Build the project dotnet build # Install required browsers -bin\Debug\netX\playwright.ps1 install +pwsh bin\Debug\netX\playwright.ps1 install ``` Create a `Program.cs` that will navigate to `https://playwright.dev/dotnet` and take a screenshot in Chromium. @@ -76,7 +76,7 @@ dotnet add package Microsoft.Playwright.NUnit # Build the project dotnet build # Install required browsers -bin\Debug\netX\playwright.ps1 install +pwsh bin\Debug\netX\playwright.ps1 install ``` Edit UnitTest1.cs file. @@ -116,7 +116,7 @@ dotnet test -- NUnit.NumberOfTestWorkers=5 [Command line tools](./cli.md) can be used to record user interactions and generate C# code. ```bash -bin\Debug\netX\playwright.ps1 codegen +pwsh bin\Debug\netX\playwright.ps1 codegen ``` ## System requirements