.NET version of the Playwright testing and automation library.
Перейти к файлу
dependabot[bot] a5f629d660
chore(deps): bump SixLabors.ImageSharp from 2.1.8 to 2.1.9 in /src/Playwright.Tests (#2965)
chore(deps): bump SixLabors.ImageSharp in /src/Playwright.Tests

Bumps [SixLabors.ImageSharp](https://github.com/SixLabors/ImageSharp) from 2.1.8 to 2.1.9.
- [Release notes](https://github.com/SixLabors/ImageSharp/releases)
- [Commits](https://github.com/SixLabors/ImageSharp/compare/v2.1.8...v2.1.9)

---
updated-dependencies:
- dependency-name: SixLabors.ImageSharp
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-07-22 20:26:17 +02:00
.azure-pipelines
.github
src chore(deps): bump SixLabors.ImageSharp from 2.1.8 to 2.1.9 in /src/Playwright.Tests (#2965) 2024-07-22 20:26:17 +02:00
utils/docker
.gitattributes
.gitignore
CONTRIBUTING.md
Directory.Build.props
LICENSE
README.md chore(roll): roll Playwright to 1.45.0-beta-1719505820000 (#2951) 2024-07-01 20:05:01 +02:00
ROLLING.md
SECURITY.md
build.sh

README.md

Playwright for .NET 🎭

NuGet version Join Discord

Linux macOS Windows
Chromium 127.0.6533.17
WebKit 17.4
Firefox 127.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