PlaywrightContrib.PageObjects
1.0.0
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/pom
See the version list below for details.
dotnet add package PlaywrightContrib.PageObjects --version 1.0.0
NuGet\Install-Package PlaywrightContrib.PageObjects -Version 1.0.0
<PackageReference Include="PlaywrightContrib.PageObjects" Version="1.0.0" />
paket add PlaywrightContrib.PageObjects --version 1.0.0
#r "nuget: PlaywrightContrib.PageObjects, 1.0.0"
// Install PlaywrightContrib.PageObjects as a Cake Addin #addin nuget:?package=PlaywrightContrib.PageObjects&version=1.0.0 // Install PlaywrightContrib.PageObjects as a Cake Tool #tool nuget:?package=PlaywrightContrib.PageObjects&version=1.0.0
PlaywrightContrib.PageObjects 🎭🧪
PlaywrightContrib.PageObjects
is a library for writing browser tests using the page object pattern with the Playwright API.
using FluentAssertions;
using Microsoft.Playwright;
using PlaywrightContrib.FluentAssertions;
using PlaywrightContrib.PageObjects;
using System.Threading.Tasks;
var playwright = await Playwright.CreateAsync();
var browser = await playwright.Chromium.LaunchAsync();
var page = await browser.NewPageAsync();
var repoPage = await page.GotoAsync<GitHubRepoPage>("https://github.com/microsoft/playwright-dotnet");
var link = await repoPage.Link;
await link.Should().HaveContentAsync("playwright-dotnet");
await link.Should().HaveAttributeValueAsync("href", "/microsoft/playwright-dotnet");
var actionsPage = await repoPage.GotoActionsAsync();
var latestStatus = await actionsPage.GetLatestWorkflowRunStatusAsync();
latestStatus.Should().Be("This workflow run completed successfully.");
public class GitHubRepoPage : PageObject
{
[Selector("h1 strong a")]
public virtual Task<IElementHandle> Link { get; }
[Selector("a span[data-content='Actions']")]
public virtual Task<IElementHandle> Actions { get; }
public async Task<GitHubActionsPage> GotoActionsAsync()
{
await (await Actions).ClickAsync();
return await Page.WaitForNavigationAsync<GitHubActionsPage>();
}
}
public class GitHubActionsPage : PageObject
{
public async Task<string> GetLatestWorkflowRunStatusAsync()
{
var status = await Page.QuerySelectorAsync("#partial-actions-workflow-runs .Box-row div[title]");
return await status.GetAttributeAsync("title");
}
}
Extensions for IPage
📄
Where T
is a PageObject
:
GoToAsync<T>
RunAndWaitForNavigationAsync<T>
RunAndWaitForResponseAsync<T>
To<T>
WaitForNavigationAsync<T>
WaitForResponseAsync<T>
Where T
is an ElementObject
:
QuerySelectorAllAsync<T>
QuerySelectorAsync<T>
WaitForSelectorAsync<T>
Extensions for IElementHandle
📑
Where T
is an ElementObject
:
To<T>
QuerySelectorAllAsync<T>
QuerySelectorAsync<T>
WaitForSelectorAsync<T>
Would you like to know more? 🤔
Further documentation is available at https://github.com/hlaueriksson/playwright-dotnet-contrib
Product | Versions 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. |
-
.NETStandard 2.0
- Castle.Core (>= 4.4.1)
- Microsoft.Playwright (>= 1.12.1)
-
net5.0
- Castle.Core (>= 4.4.1)
- Microsoft.Playwright (>= 1.12.1)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Initial release 🎉