Microsoft.Playwright (1.57.0)

Published 2026-02-04 09:31:04 +03:30 by kayer

Installation

dotnet nuget add source --name kayer --username your_username --password your_token 
dotnet add package --source kayer --version 1.57.0 Microsoft.Playwright

About this package

Playwright enables reliable end-to-end testing for modern web apps. It is built to enable cross-browser web automation that is ever-green, capable, reliable and fast. Learn more at https://playwright.dev/dotnet/.

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

Dependencies

ID Version Target Framework
Microsoft.Bcl.AsyncInterfaces 6.0.0 .NETStandard2.0
System.ComponentModel.Annotations 5.0.0 .NETStandard2.0
System.Text.Json 6.0.10 .NETStandard2.0
Details
NuGet
2026-02-04 09:31:04 +03:30
0
Microsoft
190 MiB
Assets (2)
Versions (1) View all
1.57.0 2026-02-04