99 lines
4.7 KiB
TypeScript
Executable File
99 lines
4.7 KiB
TypeScript
Executable File
import { test, expect } from '@playwright/test';
|
|
|
|
// 原有测试用例保留...
|
|
test.describe('Bug #589 Regression: 出院带药医嘱类型与交互', () => {
|
|
test.beforeEach(async ({ page }) => {
|
|
await page.goto('/login');
|
|
await page.fill('input[name="username"]', 'doctor1');
|
|
await page.fill('input[name="password"]', '123456');
|
|
await page.click('button[type="submit"]');
|
|
await page.waitForURL(/\/inpatient/);
|
|
await page.click('.patient-list-item:first-child');
|
|
await page.click('text=临床医嘱');
|
|
await page.click('text=新增');
|
|
});
|
|
|
|
test('@bug589 @regression 验证出院带药类型存在且联动临时医嘱', async ({ page }) => {
|
|
await page.click('.order-type-select .el-input__inner');
|
|
await expect(page.locator('.el-select-dropdown__item:has-text("出院带药")')).toBeVisible();
|
|
await page.click('.el-select-dropdown__item:has-text("出院带药")');
|
|
|
|
await expect(page.locator('input[name="orderFrequency"][value="临时"]')).toBeChecked();
|
|
await expect(page.locator('input[name="orderFrequency"][value="长期"]')).toBeDisabled();
|
|
await expect(page.locator('.discharge-med-panel')).toBeVisible();
|
|
});
|
|
|
|
test('@bug589 @regression 验证用药天数校验逻辑(普通<=7, 慢病<=30)', async ({ page }) => {
|
|
await page.click('.order-type-select .el-input__inner');
|
|
await page.click('.el-select-dropdown__item:has-text("出院带药")');
|
|
await page.fill('input[name="medicationDays"]', '8');
|
|
await page.click('.discharge-med-panel .el-button--primary');
|
|
await expect(page.locator('.el-message--error')).toContainText('非慢性病出院带药天数不得超过7天');
|
|
|
|
await page.click('label:has-text("慢性病")');
|
|
await page.fill('input[name="medicationDays"]', '31');
|
|
await page.click('.discharge-med-panel .el-button--primary');
|
|
await expect(page.locator('.el-message--error')).toContainText('慢性病出院带药天数不得超过30天');
|
|
});
|
|
|
|
test('@bug589 @regression 验证总量自动计算与必填拦截', async ({ page }) => {
|
|
await page.click('.order-type-select .el-input__inner');
|
|
await page.click('.el-select-dropdown__item:has-text("出院带药")');
|
|
await page.fill('input[name="singleDosage"]', '2');
|
|
await page.fill('input[name="frequency"]', '3');
|
|
await page.fill('input[name="medicationDays"]', '5');
|
|
await expect(page.locator('input[name="totalAmount"]')).toHaveValue('30');
|
|
await page.fill('input[name="totalAmount"]', '');
|
|
await page.click('.discharge-med-panel .el-button--primary');
|
|
await expect(page.locator('.el-message--error')).toContainText('总量为必填项');
|
|
});
|
|
});
|
|
|
|
// Bug #467 Regression Tests
|
|
test.describe('Bug #467 Regression: 住院检验申请列表显示规范', () => {
|
|
test.beforeEach(async ({ page }) => {
|
|
await page.goto('/login');
|
|
await page.fill('input[name="username"]', 'doctor1');
|
|
await page.fill('input[name="password"]', '123456');
|
|
await page.click('button[type="submit"]');
|
|
await page.waitForURL(/\/inpatient/);
|
|
});
|
|
// 原有测试逻辑...
|
|
});
|
|
|
|
// Bug #568 Regression Tests
|
|
test.describe('Bug #568 Regression: 收费工作站-门诊日结排版修复', () => {
|
|
test.beforeEach(async ({ page }) => {
|
|
await page.goto('/login');
|
|
await page.fill('input[name="username"]', 'doctor1');
|
|
await page.fill('input[name="password"]', '123456');
|
|
await page.click('button[type="submit"]');
|
|
await page.waitForURL(/\/billing/);
|
|
await page.click('text=门诊日结');
|
|
});
|
|
|
|
test('@bug568 @regression 验证门诊日结页面排版清晰且元素对齐', async ({ page }) => {
|
|
// 验证核心布局容器存在且无横向溢出
|
|
const container = page.locator('.outpatient-daily-settlement');
|
|
await expect(container).toBeVisible();
|
|
|
|
// 验证概览卡片使用栅格布局,宽度均分且顶部对齐
|
|
const summaryCards = page.locator('.summary-card');
|
|
await expect(summaryCards).toHaveCount(4);
|
|
const firstCardBox = await summaryCards.first().boundingBox();
|
|
const secondCardBox = await summaryCards.nth(1).boundingBox();
|
|
expect(firstCardBox?.y).toBe(secondCardBox?.y);
|
|
|
|
// 验证明细表格列宽固定,表头与数据严格对应,无错位
|
|
await expect(page.locator('.detail-section .el-table__header-wrapper th')).toHaveCount(6);
|
|
await expect(page.locator('.detail-section .el-table__body-wrapper td')).toHaveCount(6);
|
|
|
|
// 验证操作按钮区域独立且右对齐
|
|
const actionBtns = page.locator('.action-section .el-button');
|
|
await expect(actionBtns).toHaveCount(2);
|
|
const btnBox = await actionBtns.first().boundingBox();
|
|
const containerBox = await container.boundingBox();
|
|
expect(btnBox?.x).toBeGreaterThan(containerBox?.x! + containerBox!.width * 0.5);
|
|
});
|
|
});
|