fix: optimize all Page Object navigation with better error handling

- MenuManagementPage: add tree/table wait and error handling
- SystemConfigPage: add table wait and error handling
- DictionaryManagementPage: add table wait and error handling
- FileManagementPage: add table wait and error handling
- OperationLogPage: add table wait and error handling
- LoginLogPage: add table wait and error handling
- ExceptionLogPage: add table wait and error handling
This commit is contained in:
张翔
2026-04-04 09:06:01 +08:00
parent 167e513055
commit ba9cdb4b6f
7 changed files with 105 additions and 18 deletions
@@ -1,4 +1,4 @@
import { Page, Locator } from '@playwright/test';
import { Page, Locator, expect } from '@playwright/test';
export class ExceptionLogPage {
readonly page: Page;
@@ -22,8 +22,20 @@ export class ExceptionLogPage {
}
async goto() {
await this.page.goto('/exceptionlog');
await this.page.waitForLoadState('networkidle');
try {
console.log('导航到异常日志页面...');
await this.page.goto('/exceptionlog');
await this.page.waitForLoadState('networkidle');
await this.table.waitFor({ state: 'visible', timeout: 10000 });
await expect(this.page).toHaveURL(/.*exceptionlog/);
console.log('异常日志页面加载完成');
} catch (error) {
await this.page.screenshot({ path: `test-results/exception-log-error-${Date.now()}.png` });
console.error('导航到异常日志页面失败:', error);
throw new Error(`导航到异常日志页面失败: ${error instanceof Error ? error.message : String(error)}`);
}
}
async search(keyword: string) {