File size: 856 Bytes
cc036ff | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | """
Browser discovery tests for automated UI bug detection.
Test Categories:
- BROWSER-01: Intelligent exploration agent (DFS, BFS, random walk)
- BROWSER-02: Console error detection (JavaScript errors, exceptions)
- BROWSER-03: Accessibility violations (axe-core, WCAG 2.1 AA)
- BROWSER-04: Broken link detection (404s, redirect loops)
- BROWSER-05: Visual regression testing (Percy integration)
- BROWSER-06: Form filling edge cases (null bytes, XSS, SQL injection)
- BROWSER-07: API-first authentication (10-100x faster than UI login)
See: README.md for usage instructions and fixture documentation.
"""
__all__ = [
"test_console_errors",
"test_accessibility",
"test_broken_links",
"test_form_filling",
"test_visual_regression",
"test_exploration_agent",
]
import pytest
pytest_plugins = ["tests.browser_discovery.conftest"]
|