Next generation automated testing framework.
🌟 支持web
/api
测试。
🌟 提供脚手架生成自动化项目。
🌟 更好用的数据驱动。
🌟 支持数据库操作。
🌟 已经配置好的测试报告(包含截图、日志)。
🌟 天然支持API objects
、Page objects
设计模式。
lounger不是一个从零开始的自动化测试框架,建立在pytest
生态的基础上,提供更加简单的使用体验。
- pip安装。
$ pip install lounger
- 体验最新的项目代码。
$ pip install -U git+https://github.com/SeldomQA/lounger.git@main
此外,如果做Web自动化测试,请单独安装测试浏览器。
$ playwright install chromium[可选]
$ playwright install firefox[可选]
$ playwright install webkit[可选]
...
lounger提供了脚手架,直接创建项目和使用。
$ lounger --help
Usage: lounger [OPTIONS]
lounger CLI.
Options:
--version Show version.
-pw, --project-web TEXT Create an web automation test project.
-pa, --project-api TEXT Create an api automation test project.
-ya, --yaml-api TEXT Create an YAML api automation test project.
--help Show this message and exit.
- 创建web自动化测试项目。
$ lounger -pw myweb
2025-10-06 09:33:22 | INFO | cli.py | Start to create new test project: myweb
2025-10-06 09:33:22 | INFO | cli.py | CWD: D:\github\seldomQA\lounger
2025-10-06 09:33:22 | INFO | cli.py | 📁 created folder: reports
2025-10-06 09:33:22 | INFO | cli.py | 📄 created file: pytest.ini
2025-10-06 09:33:22 | INFO | cli.py | 📄 created file: conftest.py
2025-10-06 09:33:22 | INFO | cli.py | 📄 created file: test_web.py
2025-10-06 09:33:22 | INFO | cli.py | 🎉 Project 'myweb' created successfully.
2025-10-06 09:33:22 | INFO | cli.py | 👉 Go to the project folder and run 'pytest' to start testing.
- 创建api自动化测试项目。
$ lounger -pa myapi
2025-10-06 09:34:08 | INFO | cli.py | Start to create new test project: myapi
2025-10-06 09:34:08 | INFO | cli.py | CWD: D:\github\seldomQA\lounger
2025-10-06 09:34:08 | INFO | cli.py | 📁 created folder: reports
2025-10-06 09:34:08 | INFO | cli.py | 📄 created file: pytest.ini
2025-10-06 09:34:08 | INFO | cli.py | 📄 created file: conftest.py
2025-10-06 09:34:08 | INFO | cli.py | 📄 created file: test_api.py
2025-10-06 09:34:08 | INFO | cli.py | 🎉 Project 'myapi' created successfully.
2025-10-06 09:34:08 | INFO | cli.py | 👉 Go to the project folder and run 'pytest' to start testing.
- 创建YAML格式的api自动化测试项目。
注:通过YAML管理API测试用例,是为了降低非开发人员的使用门槛。
👉 阅读文档
$ lounger -ya myyapi
2025-10-06 09:35:21 | INFO | cli.py | Start to create new test project: myyapi
2025-10-06 09:35:21 | INFO | cli.py | CWD: D:\github\seldomQA\lounger
2025-10-06 09:35:21 | INFO | cli.py | 📁 created folder: reports
2025-10-06 09:35:21 | INFO | cli.py | 📄 created file: conftest.py
2025-10-06 09:35:21 | INFO | cli.py | 📄 created file: test_api.py
2025-10-06 09:35:21 | INFO | cli.py | 📄 created file: config/config.yaml
2025-10-06 09:35:21 | INFO | cli.py | 📄 created file: datas/setup/login.yaml
2025-10-06 09:35:21 | INFO | cli.py | 📄 created file: datas/sample/test_case.yaml
2025-10-06 09:35:21 | INFO | cli.py | 📄 created file: datas/sample/test_req.yaml
2025-10-06 09:35:21 | INFO | cli.py | 🎉 Project 'myyapi' created successfully.
2025-10-06 09:35:21 | INFO | cli.py | 👉 Go to the project folder and run 'pytest' to start testing.
- 直接运行测试
$ cd myweb # or myapi
$ pytest
- 测试报告
tests 提供了大量的示例学习。你会看到不少 seldom 类似的用法。
- seldom VS lounger
👉详细对比