入门 - 库
介绍
¥Introduction
Playwright 可以与 MSTest、NUnit 或 xUnit 基类类 一起使用,也可以作为 Playwright 库使用(本指南)。如果你正在开发一个利用 Playwright 功能的应用,或者你正在将 Playwright 与其他测试运行器一起使用,请继续阅读。
¥Playwright can either be used with the MSTest, NUnit, or xUnit base classes or as a Playwright Library (this guide). If you are working on an application that utilizes Playwright capabilities or you are using Playwright with another test runner, read on.
用法
¥Usage
创建一个控制台项目并添加 Playwright 依赖。
¥Create a console project and add the Playwright dependency.
# Create project
dotnet new console -n PlaywrightDemo
cd PlaywrightDemo
# Add project dependency
dotnet add package Microsoft.Playwright
# Build the project
dotnet build
# Install required browsers - replace netX with actual output folder name, e.g. net8.0.
pwsh bin/Debug/netX/playwright.ps1 install
# If the pwsh command does not work (throws TypeNotFound), make sure to use an up-to-date version of PowerShell.
dotnet tool update --global PowerShell
创建一个 Program.cs
,它将导航到 https://playwright.nodejs.cn/dotnet
并在 Chromium 中截屏。
¥Create a Program.cs
that will navigate to https://playwright.nodejs.cn/dotnet
and take a screenshot in Chromium.
using Microsoft.Playwright;
using var playwright = await Playwright.CreateAsync();
await using var browser = await playwright.Chromium.LaunchAsync();
var page = await browser.NewPageAsync();
await page.GotoAsync("https://playwright.nodejs.cn/dotnet");
await page.ScreenshotAsync(new()
{
Path = "screenshot.png"
});
现在运行它。
¥Now run it.
dotnet run
默认情况下,Playwright 以无头模式运行浏览器。要查看浏览器 UI,请将 无头模式 选项设置为 false
。你还可以使用 SlowMo 来减慢执行速度。在调试工具 section 中了解更多信息。
¥By default, Playwright runs the browsers in headless mode. To see the browser UI, set Headless option to false
. You can also use SlowMo to slow down execution. Learn more in the debugging tools section.
await using var browser = await playwright.Firefox.LaunchAsync(new()
{
Headless = false,
SlowMo = 50,
});
使用断言
¥Using Assertions
在使用你自己的测试框架时,你可以执行以下操作来利用 Playwright 的 Web 优先断言。这些 Fixture 将自动重试,直到满足条件,例如,某个元素包含特定文本或达到超时:
¥You can do the following to leverage Playwright's web-first assertions when you are using your own test framework. These will automatically retry until the condition is met, e.g. an element has a certain text or the timeout is reached:
using Microsoft.Playwright;
using static Microsoft.Playwright.Assertions;
// Change the default 5 seconds timeout if you'd like.
SetDefaultExpectTimeout(10_000);
using var playwright = await Playwright.CreateAsync();
await using var browser = await playwright.Chromium.LaunchAsync();
var page = await browser.NewPageAsync();
await page.GotoAsync("https://playwright.nodejs.cn/dotnet");
await Expect(page.GetByRole(AriaRole.Link, new() { Name = "Get started" })).ToBeVisibleAsync();
不同平台的驱动程序包
¥Bundle drivers for different platforms
Playwright 默认仅打包 .NET 发布目标运行时的驱动程序。如果你希望为其他平台打包,你可以在项目文件中使用 all
、none
或 linux
、win
、osx
来覆盖此行为。
¥Playwright by default does bundle only the driver for the .NET publish target runtime. If you want to bundle for additional platforms, you can override this behavior by using either all
, none
or linux
, win
, osx
in your project file.
<PropertyGroup>
<PlaywrightPlatform>all</PlaywrightPlatform>
</PropertyGroup>
或:
¥or:
<PropertyGroup>
<PlaywrightPlatform>osx;linux</PlaywrightPlatform>
</PropertyGroup>