.NET version of the Playwright testing and automation library.
3,007
stars
1,481
commits
C#
primary language
Sep 10, 2026
updated
| Linux | macOS | Windows | |
|---|---|---|---|
| Chromium 151.0.7922.34 | โ | โ | โ |
| WebKit 26.5 | โ | โ | โ |
| Firefox 153.0 | โ | โ | โ |
Playwright for .NET is the official language port of Playwright, the library to automate Chromium, Firefox and WebKit with a single API. Playwright is built to enable cross-browser web automation that is ever-green, capable, reliable and fast.
https://playwright.dev/dotnet/docs/intro
https://playwright.dev/dotnet/docs/api/class-playwright
using System.Threading.Tasks;
using Microsoft.Playwright;
using var playwright = await Playwright.CreateAsync();
await using var browser = await playwright.Chromium.LaunchAsync(new() { Headless = false });
var page = await browser.NewPageAsync();
await page.GotoAsync("https://playwright.dev/dotnet");
await page.ScreenshotAsync(new() { Path = "screenshot.png" });
More comfortable in another programming language? Playwright is also available in
C#
52.5%
JavaScript
45.5%
TypeScript
1.2%
.NET version of the Playwright testing and automation library.
3,007
stars
1,481
commits
C#
primary language
Sep 10, 2026
updated
| Linux | macOS | Windows | |
|---|---|---|---|
| Chromium 151.0.7922.34 | โ | โ | โ |
| WebKit 26.5 | โ | โ | โ |
| Firefox 153.0 | โ | โ | โ |
Playwright for .NET is the official language port of Playwright, the library to automate Chromium, Firefox and WebKit with a single API. Playwright is built to enable cross-browser web automation that is ever-green, capable, reliable and fast.
https://playwright.dev/dotnet/docs/intro
https://playwright.dev/dotnet/docs/api/class-playwright
using System.Threading.Tasks;
using Microsoft.Playwright;
using var playwright = await Playwright.CreateAsync();
await using var browser = await playwright.Chromium.LaunchAsync(new() { Headless = false });
var page = await browser.NewPageAsync();
await page.GotoAsync("https://playwright.dev/dotnet");
await page.ScreenshotAsync(new() { Path = "screenshot.png" });
More comfortable in another programming language? Playwright is also available in
(top 30 of 52)
C#
52.5%
JavaScript
45.5%
TypeScript
1.2%