VOOZH about

URL: https://www.nuget.org/packages/Microsoft.Playwright.NUnit/

⇱ NuGet Gallery | Microsoft.Playwright.NUnit 1.60.0




👁 Image
Microsoft.Playwright.NUnit 1.60.0

Prefix Reserved
dotnet add package Microsoft.Playwright.NUnit --version 1.60.0
 
 
NuGet\Install-Package Microsoft.Playwright.NUnit -Version 1.60.0
 
 
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Microsoft.Playwright.NUnit" Version="1.60.0" />
 
 
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Microsoft.Playwright.NUnit" Version="1.60.0" />
 
Directory.Packages.props
<PackageReference Include="Microsoft.Playwright.NUnit" />
 
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Microsoft.Playwright.NUnit --version 1.60.0
 
 
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Microsoft.Playwright.NUnit, 1.60.0"
 
 
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Microsoft.Playwright.NUnit@1.60.0
 
 
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Microsoft.Playwright.NUnit&version=1.60.0
 
Install as a Cake Addin
#tool nuget:?package=Microsoft.Playwright.NUnit&version=1.60.0
 
Install as a Cake Tool
The NuGet Team does not provide support for this client. Please contact its maintainers for support.

Playwright for .NET 🎭

👁 NuGet version
👁 Join Discord

Linux macOS Windows
Chromium 148.0.7778.96
WebKit 26.4
Firefox 150.0.2

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

Product Versions Compatible and additional computed target framework versions.
.NET net5.0 net5.0 was computed.  net5.0-windows net5.0-windows was computed.  net6.0 net6.0 was computed.  net6.0-android net6.0-android was computed.  net6.0-ios net6.0-ios was computed.  net6.0-maccatalyst net6.0-maccatalyst was computed.  net6.0-macos net6.0-macos was computed.  net6.0-tvos net6.0-tvos was computed.  net6.0-windows net6.0-windows was computed.  net7.0 net7.0 was computed.  net7.0-android net7.0-android was computed.  net7.0-ios net7.0-ios was computed.  net7.0-maccatalyst net7.0-maccatalyst was computed.  net7.0-macos net7.0-macos was computed.  net7.0-tvos net7.0-tvos was computed.  net7.0-windows net7.0-windows was computed.  net8.0 net8.0 was computed.  net8.0-android net8.0-android was computed.  net8.0-browser net8.0-browser was computed.  net8.0-ios net8.0-ios was computed.  net8.0-maccatalyst net8.0-maccatalyst was computed.  net8.0-macos net8.0-macos was computed.  net8.0-tvos net8.0-tvos was computed.  net8.0-windows net8.0-windows was computed.  net9.0 net9.0 was computed.  net9.0-android net9.0-android was computed.  net9.0-browser net9.0-browser was computed.  net9.0-ios net9.0-ios was computed.  net9.0-maccatalyst net9.0-maccatalyst was computed.  net9.0-macos net9.0-macos was computed.  net9.0-tvos net9.0-tvos was computed.  net9.0-windows net9.0-windows was computed.  net10.0 net10.0 was computed.  net10.0-android net10.0-android was computed.  net10.0-browser net10.0-browser was computed.  net10.0-ios net10.0-ios was computed.  net10.0-maccatalyst net10.0-maccatalyst was computed.  net10.0-macos net10.0-macos was computed.  net10.0-tvos net10.0-tvos was computed.  net10.0-windows net10.0-windows was computed. 
.NET Core netcoreapp3.1 netcoreapp3.1 is compatible. 
.NET Framework net462 net462 is compatible.  net463 net463 was computed.  net47 net47 was computed.  net471 net471 was computed.  net472 net472 was computed.  net48 net48 was computed.  net481 net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (16)

Showing the top 5 NuGet packages that depend on Microsoft.Playwright.NUnit:

Package Downloads
Ben.SemanticKernel

A simple Semantic Kernel library for .NET applications

GingerCoreNET

Package Description

Ossa.TestFramework.UIIntegration

Package Description

CloudBeat.Kit.Playwright

Package Description

Union.Playwright.NUnit

A .NET 9.0 testing framework built on Microsoft Playwright and NUnit. Provides Page Object Model with URL-based routing and type-safe navigation.

GitHub repositories (22)

Showing the top 20 popular GitHub repositories that depend on Microsoft.Playwright.NUnit:

Repository Stars
Megabit/Blazorise
Blazorise is a component library built on top of Blazor with support for CSS frameworks like Bootstrap, Tailwind, Bulma, AntDesign, and Material.
dotnet/sdk
Core functionality needed to create .NET Core projects, that is shared between Visual Studio and CLI
dotnet/dotnet
Home of .NET's Virtual Monolithic Repository which includes all the code needed to build the .NET SDK.
mspnp/AzureNamingTool
The Azure Naming Tool is a .NET 10 Blazor application with a RESTful API for generating and validating Azure resource names. Features include SQLite database support, drag-and-drop configuration, Azure tenant validation, and API V2 with bulk operations.
FritzAndFriends/BlazorWebFormsComponents
A collection of Blazor components that emulate the ASP.NET Web Forms controls of the same name
Ivy-Interactive/Ivy-Framework
The ultimate framework for building internal tools with LLM code generation by unifying front-end and back-end into a single C# codebase.
EdCharbeneau/BlazorSize
Blazor browser size interop for matchMedia and browser window size at runtime.
Jinjinov/OpenHabitTracker
C# .NET 9 Blazor habit tracker application. Works on Web, Windows, Linux, Android, iOS and macOS.
Nfactor26/pixel-identity
Bootstrapper for https://github.com/openiddict/openiddict-core and Asp.net Identity with a blazor based UI .
KristofferStrube/Blazor.WebAudio
A Blazor wrapper for the Web Audio browser API.
DavidVollmers/Ignis
The Blazor framework for building modern web applications.
jsakamoto/Toolbelt.Blazor.HeadElement
Head element support (change the document title, "meta" elements such as OGP, and "link" elements) for Blazor apps.
hlaueriksson/GEmojiSharp
:octocat: GitHub Emoji for C#, dotnet and beyond
LostBeard/SpawnDev.BlazorJS
Full Blazor WebAssembly and Javascript interop. Supports all Javascript data types and web browser APIs.
CnGal/CnGalWebSite
CnGal是一个非营利性的,立志于收集整理国内制作组创作的中文Galgame/AVG的介绍、攻略、评测、感想等内容的资料性质的网站。
Letterbook/Letterbook
Sustainable federated social media built for open correspondence
jsakamoto/Toolbelt.Blazor.HotKeys2
This is a class library that provides configuration-centric keyboard shortcuts for your Blazor apps.
matt-bentley/CleanArchitecture
An opinionated ASP.NET Core solution setup for creating web applications using Clean Architecture and Domain-Driven Design principles.
jsakamoto/Toolbelt.Blazor.HotKeys
This is a class library that provides configuration-centric keyboard shortcuts for your Blazor WebAssembly (client-side) apps.
ivaano/NsxLibraryManager
Another Lib Manager for NSP NSZ files
Version Downloads Last Updated
1.60.0 90,766 5/21/2026
1.59.0 335,405 4/9/2026
1.58.0 659,642 2/2/2026
1.57.0 1,128,630 12/4/2025
1.56.0 742,055 11/10/2025
1.55.0 502,074 9/4/2025
1.55.0-beta-4 1,972 8/13/2025
1.55.0-beta-2 232 8/12/2025
1.55.0-beta-1 228 8/12/2025
1.54.0 441,792 7/22/2025
1.53.0 201,792 6/25/2025
1.52.0 666,921 4/30/2025
1.51.0 2,187,009 3/18/2025
1.50.0 549,408 2/3/2025
1.50.0-beta-2 5,746 11/25/2024
1.50.0-beta-1 255 11/25/2024
1.49.0 919,566 11/21/2024
1.48.0 468,478 10/21/2024
1.47.0 655,614 9/12/2024
1.46.0 375,339 8/12/2024
Loading failed