:performing_arts: 剧作家测试跑步者 Web应用程序的零配置跨浏览器端到端测试。 具有浏览器自动化,类似Jest的断言和对TypeScript的内置支持。 可以在预览中使用Playwright测试运行程序,并且可能会进行细微的更改。 我们欢迎您提供反馈意见以将其朝1.0迈进。 开始吧 安装 npm i -D @playwright/test 编写测试 创建foo.spec.ts来定义您的测试。 测试功能使用参数进行浏览器自动化。 import { it , expect } from "@playwright/test" ; it ( "is a basic test with the page" , async ( { page } ) => { await page . goto ( "https://playwright.dev/" ) ; const name = await pag
2022-10-21 10:49:25 31KB e2e-tests test-runners playwright TypeScript
1