Microsoft.Playwright 1.57.0

Playwright for .NET 🎭

NuGet version Join Discord

Linux macOS Windows
Chromium 143.0.7499.4 ✅ ✅ ✅
WebKit 26.0 ✅ ✅ ✅
Firefox 144.0.2 ✅ ✅ ✅

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.

Documentation

https://playwright.dev/dotnet/docs/intro

API Reference

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" });

Other languages

More comfortable in another programming language? Playwright is also available in

No packages depend on Microsoft.Playwright.

Version Downloads Last updated
1.57.0 1 12/18/2025
1.53.0 129 07/17/2025
1.51.0 16 04/20/2025
1.47.0 28 09/16/2024