playwright是微软开发的web ui自动化测试框架。
它旨在提供一个跨平台、跨语言、跨浏览器的自动化测试框架,同时也支持移动浏览器。
如其官方主页所述:
当今最好的 web ui 自动化测试框架是什么?杰出的选项包括已有十年历史的 selenium、最近流行的 cypress 以及我们在这里介绍的 playwright。它们有何不同?以下是总结对比供大家参考
feature | playwright | selenium | cypress |
---|---|---|---|
supported languages | javascript, java, c#, python | javascript, java, c#, python, ruby | javascript/typescript |
supported browsers | chrome, edge, firefox, safari | chrome, edge, firefox, safari, ie | chrome, edge, firefox, safari |
testing framework | frameworks for supported languages | frameworks for supported languages | frameworks for supported languages |
usability | easy to use and configure | complex setup with a learning curve | easy to use and configure |
code complexity | simple | moderate | simple |
dom manipulation | simple | moderate | simple |
community maturity | improving gradually | highly mature | fairly mature |
headless mode support | yes | yes | yes |
concurrency support | supported | supported | depends on ci/cd tools |
iframe support | supported | supported | supported via plugins |
driver | not required | requires a browser-specific driver | not required |
multi-tab operations | supported | not supported | supported |
drag and drop | supported | supported | supported |
built-in reporting | yes | no | yes |
cross-origin support | supported | supported | supported |
built-in debugging | yes | no | yes |
automatic wait | yes | no | yes |
built-in screenshot/video | yes | no video recording | yes |
虽然 playwright 支持多种语言,但它严重依赖 node.js。无论您使用python还是java版本,playwright在初始化时都需要node.js环境,下载node.js驱动程序。因此,本指南我们将重点关注 javascript/typescript。
# using npm npm init playwright@latest # using yarn yarn create playwright
如果您选择下载浏览器,playwright 将下载 chromium、firefox 和 webkit,这可能需要一些时间。此过程仅在第一次设置期间发生,除非 playwright 版本已更新。
初始化后,您将得到一个项目模板:
playwright.config.ts # playwright configuration file package.json # node.js configuration file package-lock.json # node.js dependency lock file tests/ # your test directory example.spec.ts # template test case tests-examples/ # example tests directory demo-todo-app.spec.ts # example test case
运行示例测试用例:
npx playwright test
测试静默执行(在无头模式下),结果显示为:
running 6 tests using 6 workers 6 passed (10s) to open the last html report run: npx playwright show-report
这是 example.spec.ts 测试用例:
import { test, expect } from '@playwright/test'; test('has title', async ({ page }) => { await page.goto('https://playwright.dev/'); await expect(page).tohavetitle(/playwright/); }); test('get started link', async ({ page }) => { await page.goto('https://playwright.dev/'); await page.getbyrole('link', { name: 'get started' }).click(); await expect(page).tohaveurl(/.*intro/); });
每种测试方法都有:
主要方法包括:
以下是常用命令:
npx playwright test
npx playwright test landing-page.spec.ts
npx playwright test --debug
使用codegen功能记录交互:
npx playwright codegen https://leapcell.io/
录制的代码可以复制到您的文件中。注意:记录器可能无法处理悬停等复杂操作。
本节介绍一些与页面元素交互的典型 playwright 操作。请注意,前面介绍的定位器对象在创建过程中实际上并没有在页面上定位该元素。即使页面上不存在该元素,使用元素定位器方法获取定位器对象也不会引发任何异常。实际的元素查找仅在交互期间发生。这与 selenium 的 findelement 方法不同,后者直接在页面上搜索元素,如果找不到元素则抛出异常。
使用fill方法进行文本输入,主要针对<input>、<textarea>,或者具有[contenteditable]属性的元素:
// text input await page.getbyrole('textbox').fill('peter');
使用 locator.setchecked() 或 locator.check() 与 input[type=checkbox]、input[type=radio] 或具有 [role=checkbox] 属性的元素进行交互:
await page.getbylabel('i agree to the terms above').check(); expect(await page.getbylabel('subscribe to newsletter').ischecked()).tobetruthy(); // uncheck await page.getbylabel('xl').setchecked(false);
使用 locator.selectoption() 与 <select> 元素交互:
// select by value await page.getbylabel('choose a color').selectoption('blue'); // select by label await page.getbylabel('choose a color').selectoption({ label: 'blue' }); // multi-select await page.getbylabel('choose multiple colors').selectoption(['red', 'green', 'blue']);
基本操作:
// left click await page.getbyrole('button').click(); // double click await page.getbytext('item').dblclick(); // right click await page.getbytext('item').click({ button: 'right' }); // shift+click await page.getbytext('item').click({ modifiers: ['shift'] }); // hover await page.getbytext('item').hover(); // click at specific position await page.getbytext('item').click({ position: { x: 0, y: 0 } });
对于被其他人覆盖的元素,请用力点击:
await page.getbyrole('button').click({ force: true });
或者以编程方式触发点击事件:
await page.getbyrole('button').dispatchevent('click');
locator.type() 方法模拟逐个字符输入,触发 keydown、keyup 和 keypress 事件:
await page.locator('#area').type('hello world!');
使用 locator.press() 作为特殊键:
// enter key await page.getbytext('submit').press('enter'); // ctrl+right arrow await page.getbyrole('textbox').press('control+arrowright'); // dollar key await page.getbyrole('textbox').press('$');
支持的按键包括反引号、减号、等于、反斜杠、退格、制表符、删除、转义、arrowdown、end、enter、home、insert、pagedown、pageup、arrowright、arrowup、f1-f12、digit0-digit9 和 keya -keyz。
使用locator.setinputfiles()指定要上传的文件。支持多个文件:
// upload a file await page.getbylabel('upload file').setinputfiles('myfile.pdf'); // upload multiple files await page.getbylabel('upload files').setinputfiles(['file1.txt', 'file2.txt']); // remove files await page.getbylabel('upload file').setinputfiles([]); // upload from buffer await page.getbylabel('upload file').setinputfiles({ name: 'file.txt', mimetype: 'text/plain', buffer: buffer.from('this is test') });
使用 locator.focus() 聚焦于某个元素:
await page.getbylabel('password').focus();
拖放过程涉及四个步骤:
您可以使用locator.dragto()方法:
await page.locator('#item-to-be-dragged').dragto(page.locator('#item-to-drop-at'));
或者,手动实施该过程:
await page.locator('#item-to-be-dragged').hover(); await page.mouse.down(); await page.locator('#item-to-drop-at').hover(); await page.mouse.up();
默认情况下,playwright 会自动取消警告、确认和提示等对话框。您可以预先注册一个对话框处理程序来接受对话框:
page.on('dialog', dialog => dialog.accept()); await page.getbyrole('button').click();
当弹出新页面时,可以使用popup事件来处理:
const newPagePromise = page.waitForEvent('popup'); await page.getByText('Click me').click(); const newPage = await newPagePromise; await newPage.waitForLoadState(); console.log(await newPage.title());
leapcell 是一个专为分布式应用程序设计的现代云计算平台。它采用按量付费模式,无闲置成本,确保您只需为使用的资源付费。
成本效益
开发者体验
可扩展性和性能
更多部署示例,请参阅文档。