d2cef85187
- Add comprehensive test report (TEST_REPORT.md) - Add database reset scripts for testing - Update .gitignore to exclude temporary files - Add frontend e2e test utilities and configuration
98 lines
3.5 KiB
TypeScript
98 lines
3.5 KiB
TypeScript
import { Page, Locator, expect } from '@playwright/test';
|
|
|
|
export class DictionaryManagementPage {
|
|
readonly page: Page;
|
|
readonly table: Locator;
|
|
readonly createDictButton: Locator;
|
|
readonly saveButton: Locator;
|
|
readonly dialog: Locator;
|
|
readonly dictNameInput: Locator;
|
|
readonly dictTypeInput: Locator;
|
|
readonly statusSelect: Locator;
|
|
readonly remarkInput: Locator;
|
|
|
|
constructor(page: Page) {
|
|
this.page = page;
|
|
this.table = page.locator('.el-table');
|
|
this.createDictButton = page.getByRole('button', { name: '新增字典' });
|
|
this.saveButton = page.getByRole('button', { name: '确定' });
|
|
this.dialog = page.locator('.el-dialog');
|
|
this.dictNameInput = page.locator('.el-dialog').getByRole('textbox', { name: '字典名称' });
|
|
this.dictTypeInput = page.locator('.el-dialog').getByRole('textbox', { name: '字典类型' });
|
|
this.statusSelect = page.locator('.el-dialog').getByRole('combobox', { name: '状态' });
|
|
this.remarkInput = page.locator('.el-dialog').getByRole('textbox', { name: '备注' });
|
|
}
|
|
|
|
async goto() {
|
|
try {
|
|
console.log('导航到字典管理页面...');
|
|
await this.page.goto('/dict');
|
|
|
|
await this.page.waitForLoadState('domcontentloaded');
|
|
await this.page.waitForTimeout(1000);
|
|
await this.table.waitFor({ state: 'visible', timeout: 15000 });
|
|
await expect(this.page).toHaveURL(/.*dict/, { timeout: 15000 });
|
|
|
|
console.log('字典管理页面加载完成');
|
|
} catch (error) {
|
|
await this.page.screenshot({ path: `test-results/dict-management-error-${Date.now()}.png` });
|
|
console.error('导航到字典管理页面失败:', error);
|
|
throw new Error(`导航到字典管理页面失败: ${error instanceof Error ? error.message : String(error)}`);
|
|
}
|
|
}
|
|
|
|
async createDict(dictName: string, dictType: string, status: string = '0', remark?: string) {
|
|
await this.createDictButton.click();
|
|
await this.page.waitForTimeout(500);
|
|
|
|
await this.dictNameInput.fill(dictName);
|
|
await this.dictTypeInput.fill(dictType);
|
|
|
|
if (status) {
|
|
await this.statusSelect.click();
|
|
await this.page.waitForTimeout(300);
|
|
await this.page.getByRole('option', { name: status === '0' ? '正常' : '停用' }).click();
|
|
}
|
|
|
|
if (remark) {
|
|
await this.remarkInput.fill(remark);
|
|
}
|
|
|
|
await this.saveButton.click();
|
|
await this.page.waitForLoadState('networkidle');
|
|
}
|
|
|
|
async editDict(dictName: string, newDictName: string) {
|
|
const row = this.table.locator('tr').filter({ hasText: dictName }).first();
|
|
const editBtn = row.getByRole('button', { name: '编辑' });
|
|
await editBtn.click();
|
|
await this.page.waitForTimeout(500);
|
|
|
|
await this.dictNameInput.clear();
|
|
await this.dictNameInput.fill(newDictName);
|
|
|
|
await this.saveButton.click();
|
|
await this.page.waitForLoadState('networkidle');
|
|
}
|
|
|
|
async deleteDict(dictName: string) {
|
|
const row = this.table.locator('tr').filter({ hasText: dictName }).first();
|
|
const deleteBtn = row.getByRole('button', { name: '删除' });
|
|
await deleteBtn.click();
|
|
await this.page.waitForTimeout(500);
|
|
|
|
const confirmBtn = this.page.locator('.el-message-box').getByRole('button', { name: '确定' });
|
|
await confirmBtn.click();
|
|
await this.page.waitForLoadState('networkidle');
|
|
}
|
|
|
|
async getDictCount() {
|
|
const rows = await this.table.locator('.el-table__row').count();
|
|
return rows;
|
|
}
|
|
|
|
async containsText(text: string): Promise<boolean> {
|
|
return await this.table.getByText(text).count() > 0;
|
|
}
|
|
}
|