.NET version of the Playwright testing and automation library.
Перейти к файлу
Max Schmitt 2d7e517e79 chore: mark 1.38.0 2023-09-19 11:29:05 +02:00
.build
.github
src chore: mark 1.38.0 2023-09-19 11:29:05 +02:00
utils/docker fix: clear nuget cache in Docker image before publishing (#2695) 2023-09-13 18:03:38 +02:00
.gitattributes
.gitignore
CONTRIBUTING.md
Directory.Build.props
LICENSE
README.md feat(roll): roll to Playwright 1.38.0 (#2699) 2023-09-18 10:04:16 +02:00
ROLLING.md
SECURITY.md
build.sh

README.md

Playwright for .NET 🎭

NuGet version Join Slack

Linux macOS Windows
Chromium 118.0.5993.11
WebKit 17.0
Firefox 117.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;

class Program
{
    public static async Task Main()
    {
        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