doc(csharp): improve example readability on intro page (#6957)
This commit is contained in:
parent
4c70856252
commit
cc2a7ef369
|
|
@ -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).
|
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
|
```csharp
|
||||||
await playwright.Firefox.LaunchAsync(new BrowserTypeLaunchOptions { Headless = false, SlowMo = 50 });
|
await playwright.Firefox.LaunchAsync(new BrowserTypeLaunchOptions
|
||||||
|
{
|
||||||
|
Headless = false,
|
||||||
|
SlowMo = 50,
|
||||||
|
});
|
||||||
```
|
```
|
||||||
|
|
||||||
## First test
|
## First test
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue