feat: complete system test fixes - 100% pass rate (85/85)

- Fixed all form tests (20/20 passing)
- Fixed all performance tests (35/35 passing)
- Fixed all SEO and accessibility tests (30/30 passing)
- Enhanced test framework with custom reporting
- Added performance baseline tracking
- Improved test reliability and error handling
This commit is contained in:
张翔
2026-03-06 19:37:02 +08:00
parent e6524044ef
commit 4c8714c12d
27 changed files with 5072 additions and 264 deletions
+1 -1
View File
@@ -14,7 +14,7 @@ export class BasePage {
}
async navigate(): Promise<void> {
await this.page.goto(this.url, { waitUntil: 'networkidle', timeout: this.config.timeout });
await this.page.goto(this.url, { waitUntil: 'domcontentloaded', timeout: this.config.timeout });
}
async waitForLoadState(state: 'load' | 'domcontentloaded' | 'networkidle' = 'load'): Promise<void> {