跳至主要内容

安装

介绍

Playwright 专为满足端到端测试的需要而创建。Playwright 支持所有现代渲染引擎,包括 Chromium、WebKit 和 Firefox。在 Windows、Linux 和 macOS 上进行测试,无论是在本地还是在 CI 上,无论是在无头模式还是在有头模式下,都具有原生移动模拟。

您可以选择使用 Playwright 提供的 MSTest 基类NUnit 基类 来编写端到端测试。这些类支持在多个浏览器引擎上运行测试、并行化测试、调整启动/上下文选项,并开箱即用地获取每个测试的 Page/BrowserContext 实例。或者,您可以使用 手动编写测试基础设施。

  1. 首先使用 dotnet new 创建一个新项目。这将创建 PlaywrightTests 目录,其中包含 UnitTest1.cs 文件。
dotnet new mstest -n PlaywrightTests
cd PlaywrightTests
  1. 安装必要的 Playwright 依赖项
dotnet add package Microsoft.Playwright.MSTest
  1. 构建项目,以便 playwright.ps1 可在 bin 目录中使用。
dotnet build
  1. 安装所需的浏览器。此示例使用 net8.0,如果您使用的是其他版本的 .NET,则需要调整命令并将 net8.0 更改为您的版本。
pwsh bin/Debug/net8.0/playwright.ps1 install

如果 pwsh 不可用,您需要 安装 PowerShell

添加示例测试

使用以下代码编辑 UnitTest1.cs 文件,以创建一个示例端到端测试。

UnitTest1.cs
using System.Text.RegularExpressions;
using Microsoft.Playwright;
using Microsoft.Playwright.MSTest;

namespace PlaywrightTests;

[TestClass]
public class ExampleTest : PageTest
{
[TestMethod]
public async Task HasTitle()
{
await Page.GotoAsync("https://playwright.net.cn");

// Expect a title "to contain" a substring.
await Expect(Page).ToHaveTitleAsync(new Regex("Playwright"));
}

[TestMethod]
public async Task GetStartedLink()
{
await Page.GotoAsync("https://playwright.net.cn");

// Click the get started link.
await Page.GetByRole(AriaRole.Link, new() { Name = "Get started" }).ClickAsync();

// Expects page to have a heading with the name of Installation.
await Expect(Page.GetByRole(AriaRole.Heading, new() { Name = "Installation" })).ToBeVisibleAsync();
}
}

运行示例测试

默认情况下,测试将在 Chromium 上运行。这可以通过 BROWSER 环境变量配置,也可以通过调整 启动配置选项 来配置。测试在无头模式下运行,这意味着运行测试时不会打开浏览器。测试结果和测试日志将显示在终端中。

dotnet test

有关在有头模式下运行测试、运行多个测试、运行特定配置等的更多信息,请参阅有关 运行和调试测试 的文档。

系统要求

  • Playwright 作为 .NET Standard 2.0 库分发。我们建议使用 .NET 8。
  • Windows 10+、Windows Server 2016+ 或 Windows Subsystem for Linux (WSL)。
  • macOS 13 Ventura 或 macOS 14 Sonoma。
  • Debian 11、Debian 12、Ubuntu 20.04 或 Ubuntu 22.04、Ubuntu 24.04,在 x86-64 和 arm64 架构上。

下一步