PlaywrightContrib.Extensions 1.0.0

Suggested Alternatives

Microsoft.Playwright

Additional Details

This package is based on the IElementHandle interface.
The use of ElementHandle is discouraged, use Locator objects and web-first assertions instead.
You can use the vanilla API to achieve the same thing without using this package:
https://playwright.dev/dotnet/docs/api/class-locator

There is a newer version of this package available.
See the version list below for details.
dotnet add package PlaywrightContrib.Extensions --version 1.0.0
NuGet\Install-Package PlaywrightContrib.Extensions -Version 1.0.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="PlaywrightContrib.Extensions" Version="1.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add PlaywrightContrib.Extensions --version 1.0.0
#r "nuget: PlaywrightContrib.Extensions, 1.0.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.
// Install PlaywrightContrib.Extensions as a Cake Addin
#addin nuget:?package=PlaywrightContrib.Extensions&version=1.0.0

// Install PlaywrightContrib.Extensions as a Cake Tool
#tool nuget:?package=PlaywrightContrib.Extensions&version=1.0.0

PlaywrightContrib.Extensions 🎭🧪

build CodeFactor

PlaywrightContrib.Extensions is a library with extension methods for writing tests with the Playwright API.

using FluentAssertions;
using Microsoft.Playwright;
using PlaywrightContrib.Extensions;

var playwright = await Playwright.CreateAsync();
var browser = await playwright.Chromium.LaunchAsync();
var page = await browser.NewPageAsync();

await page.GotoAsync("https://github.com/microsoft/playwright-dotnet");
var link = await page.QuerySelectorWithContentAsync("h1 a", "playwright-dotnet");
(await link.HrefAsync()).Should().Be("https://github.com/microsoft/playwright-dotnet");
(await page.HasContentAsync("Playwright for .NET is the official language port of Playwright")).Should().BeTrue();

await page.ClickAsync("a span[data-content='Actions']");
await page.WaitForNavigationAsync();
var latestStatus = await page.QuerySelectorAsync("#partial-actions-workflow-runs .Box-row div[title]");
latestStatus.Exists().Should().BeTrue();
(await latestStatus.HasAttributeValueAsync("title", "This workflow run completed successfully.")).Should().BeTrue();

Extensions for IPage 📄

Attribute:

  • GetAttributeOrDefaultAsync

Evaluation:

  • HasContentAsync
  • HasTitleAsync

Query:

  • QuerySelectorAllWithContentAsync
  • QuerySelectorWithContentAsync

Extensions for IElementHandle 📑

Attribute:

  • ClassListAsync
  • ClassNameAsync
  • GetAttributeOrDefaultAsync
  • HrefAsync
  • IdAsync
  • NameAsync
  • SrcAsync
  • ValueAsync

Content:

  • OuterHTMLAsync

Evaluation:

  • Exists
  • HasAttributeAsync
  • HasAttributeValueAsync
  • HasClassAsync
  • HasContentAsync
  • HasFocusAsync
  • HasValueAsync
  • IsReadOnlyAsync
  • IsRequiredAsync
  • IsSelectedAsync

Query:

  • QuerySelectorAllWithContentAsync
  • QuerySelectorWithContentAsync

Would you like to know more? 🤔

Further documentation is available at https://github.com/hlaueriksson/playwright-dotnet-contrib

Product Compatible and additional computed target framework versions.
.NET net5.0 is compatible.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on PlaywrightContrib.Extensions:

Package Downloads
PlaywrightContrib.FluentAssertions

Contributions to Playwright for .NET 🎭🧪 ⚠️ This package is legacy and is no longer maintained ✔️ PlaywrightContrib.FluentAssertions is a library for writing tests with FluentAssertions against the Playwright API ✔️ It provides a convenient way to write readable and robust browser tests in .NET ✔️ Playwright is built to enable cross-browser web automation that is ever-green, capable, reliable and fast ✔️ FluentAssertions offers a very extensive set of extension methods that allow you to more naturally specify the expected outcome of a TDD or BDD-style unit tests

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2.0.0 3,826 6/21/2022
1.0.0 4,891 6/28/2021

Initial release 🎉