.NET version of the Playwright testing and automation library.
Перейти к файлу
Dmitry Gozman bca5358a0f
feat: roll to new option overloads (#2387)
This makes string option overloads to support unsuffixed name, e.g.
`Name` in addition to `NameString` and `NameRegex`.
2022-11-15 15:47:28 -08:00
.build
.github
src
utils/docker
.gitattributes
.gitignore
CONTRIBUTING.md
Directory.Build.props
LICENSE
README.md
ROLLING.md
build.sh

README.md

Playwright for .NET 🎭

NuGet version Join Slack

Linux macOS Windows
Chromium 108.0.5359.29
WebKit 16.0
Firefox 106.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