feiyun0112 / playwright-dotnet

.NET version of the Playwright testing and automation library.

Home Page:https://playwright.dev/dotnet/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Playwright for .NET 🎭

NuGet version Join Discord

Linux macOS Windows
Chromium 119.0.6045.9 βœ… βœ… βœ…
WebKit 17.0 βœ… βœ… βœ…
Firefox 118.0.1 βœ… βœ… βœ…

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

About

.NET version of the Playwright testing and automation library.

https://playwright.dev/dotnet/

License:MIT License


Languages

Language:C# 49.9%Language:JavaScript 48.7%Language:TypeScript 0.7%Language:HTML 0.7%Language:Shell 0.1%Language:CSS 0.0%Language:PowerShell 0.0%Language:Batchfile 0.0%