playwright page中添加allure
时间: 2023-08-02 20:08:32 浏览: 83
要在 Playwright 页面中添加 Allure 报告,需要进行以下步骤:
1. 安装 Allure 报告生成器:
```
npm install -g allure-commandline
```
2. 在项目中安装 Allure 报告生成器:
```
npm install --save-dev allure-mocha
```
3. 在测试文件中引入 `allure-mocha`:
```javascript
const { expect } = require('@playwright/test');
const { test, expect } = require('@playwright/test');
const { allure } = require('allure-mocha/runtime');
// 在测试用例前后添加 Allure 报告的标记
allure.feature('Feature Name');
allure.story('Story Name');
test('Test Name', async ({ page }) => {
// 测试代码
await page.goto('https://example.com');
const title = await page.title();
expect(title).toBe('Example Domain');
});
```
4. 运行测试用例并生成 Allure 报告:
```
npx playwright test --reporter=list,mocha-allure-reporter
allure generate allure-results
allure open
```
这样就可以在 Playwright 页面中添加 Allure 报告了。
阅读全文