From cc2a7ef3698fcca6414838dafe6a9d93f3394415 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dar=C3=ADo=20Kondratiuk?= Date: Tue, 8 Jun 2021 16:03:49 -0300 Subject: [PATCH] doc(csharp): improve example readability on intro page (#6957) --- docs/src/intro-csharp.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/docs/src/intro-csharp.md b/docs/src/intro-csharp.md index f4939564b7..560a691a17 100644 --- a/docs/src/intro-csharp.md +++ b/docs/src/intro-csharp.md @@ -57,7 +57,11 @@ dotnet run By default, Playwright runs the browsers in headless mode. To see the browser UI, pass the `Headless = false` flag while launching the browser. You can also use [`option: slowMo`] to slow down execution. Learn more in the debugging tools [section](./debug.md). ```csharp -await playwright.Firefox.LaunchAsync(new BrowserTypeLaunchOptions { Headless = false, SlowMo = 50 }); +await playwright.Firefox.LaunchAsync(new BrowserTypeLaunchOptions +{ + Headless = false, + SlowMo = 50, +}); ``` ## First test