.NET version of the Playwright testing and automation library.
Перейти к файлу
Max Schmitt f8f62096a7
chore: mark v1.46.0 (#2981)
2024-08-12 11:19:23 +02:00
.azure-pipelines
.github
src chore: mark v1.46.0 (#2981) 2024-08-12 11:19:23 +02:00
utils/docker
.gitattributes
.gitignore
CONTRIBUTING.md
Directory.Build.props
LICENSE
README.md chore: align with upstream exception handling (#2975) 2024-08-01 22:02:37 +02:00
ROLLING.md
SECURITY.md
build.sh

README.md

Playwright for .NET 🎭

NuGet version Join Discord

Linux macOS Windows
Chromium 128.0.6613.18
WebKit 18.0
Firefox 128.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.

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