Pytest 中,每一个scenario,记录每一次 scenario动图
时间: 2024-04-11 09:33:56 浏览: 251
pytest中文文档详解
在 Pytest 中,你可以使用 `pytest-html` 插件来生成测试报告,并且该插件支持录制每个 scenario 的动图。下面是一个示例的 `pytest.ini` 文件和使用 `pytest.mark.record_tests` 装饰器来记录动图的示例代码:
首先,在项目根目录下创建一个 `pytest.ini` 文件,并添加以下内容:
```ini
[pytest]
addopts = --html=report.html
```
接下来,在你的测试文件中,你可以使用 `pytest.mark.record_tests` 装饰器来记录每个 scenario 的动图。示例代码如下:
```python
import pytest
from selenium import webdriver
@pytest.fixture(scope='session')
def browser():
# 在整个测试会话期间启动浏览器
driver = webdriver.Chrome()
yield driver
driver.quit()
@pytest.mark.record_tests
def test_scenario(browser):
# 在这里编写你的测试代码
pass
```
在上面的示例代码中,我们使用 `pytest.mark.record_tests` 装饰器来标记测试函数 `test_scenario`。当运行测试时,`pytest-html` 插件会生成一个名为 `report.html` 的测试报告,并且会记录每个被标记的测试函数的动图。
确保你已经安装了 `pytest`、`pytest-html` 这些依赖。然后,在命令行中运行 `pytest` 命令,它将运行你的测试并生成测试报告,其中包含所有标记为 `record_tests` 的 scenario 的动图。
阅读全文