| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| README.md | 2025-11-27 | 1.4 kB | |
| v0.22.5 source code.tar.gz | 2025-11-27 | 593.0 kB | |
| v0.22.5 source code.zip | 2025-11-27 | 754.0 kB | |
| Totals: 3 Items | 1.3 MB | 0 | |
What's Changed
- feat: add allure reporter by @programminx-askui in https://github.com/askui/vision-agent/pull/191
- fix: android multi-screen support by @mlikasam-askui in https://github.com/askui/vision-agent/pull/197
š Features
- Allure Test Reporting Integration
AllureReporter: Seamlessly integrate Vision Agent test results into the Allure reporting framework.- Records each agent interaction as a structured Allure test step
- Automatically attaches screenshots to improve debugging and test insights
- Performs eager dependency checking ā if Allure is not installed, an
ImportErroris raised during initialization
```python from askui import VisionAgent from askui.reporting import AllureReporter
with VisionAgent(reporter=[AllureReporter()]) as agent: agent.act("Click the login button") # Actions become Allure steps with screenshots in the report ```
Requirements
Install at least one of the following packages:
- allure-python-commons
- allure-pytest
- allure-behave
š Install with:
bash
pip install allure-python-commons
š ļø Fixes
- Android Multi-Screen Support
- Improved handling of multiple displays on Android devices
Full Changelog: https://github.com/askui/vision-agent/compare/v0.22.4...v0.22.5