主要更新: 1. 后端核心底座完成 (M1-M6): - 健康检查、指标监控、分布式锁 - 事件总线、队列系统、事务管理 - 安全守卫、多租户隔离、存储适配器 - 审计日志、配置管理、多语言支持 2. 前端迁移到 Ant Design Vue: - 从 Element Plus 迁移到 Ant Design Vue - 完善 system 模块 (role/menu/dept) - 修复依赖和配置问题 3. 文档完善: - AI 开发工作流文档 - 架构约束和开发规范 - 项目进度跟踪 4. 其他改进: - 修复编译错误和类型问题 - 完善测试用例 - 优化项目结构
47 lines
1.9 KiB
TypeScript
47 lines
1.9 KiB
TypeScript
import type { Page } from '@playwright/test';
|
||
|
||
import { expect } from '@playwright/test';
|
||
|
||
export async function authLogin(page: Page) {
|
||
// 确保登录表单正常
|
||
const usernameInput = await page.locator(`input[name='username']`);
|
||
await expect(usernameInput).toBeVisible();
|
||
|
||
const passwordInput = await page.locator(`input[name='password']`);
|
||
await expect(passwordInput).toBeVisible();
|
||
|
||
const sliderCaptcha = await page.locator(`div[name='captcha']`);
|
||
const sliderCaptchaAction = await page.locator(`div[name='captcha-action']`);
|
||
await expect(sliderCaptcha).toBeVisible();
|
||
await expect(sliderCaptchaAction).toBeVisible();
|
||
|
||
// 拖动验证码滑块
|
||
// 获取拖动按钮的位置
|
||
const sliderCaptchaBox = await sliderCaptcha.boundingBox();
|
||
if (!sliderCaptchaBox) throw new Error('滑块未找到');
|
||
|
||
const actionBoundingBox = await sliderCaptchaAction.boundingBox();
|
||
if (!actionBoundingBox) throw new Error('要拖动的按钮未找到');
|
||
|
||
// 计算起始位置和目标位置
|
||
const startX = actionBoundingBox.x + actionBoundingBox.width / 2; // div 中心的 x 坐标
|
||
const startY = actionBoundingBox.y + actionBoundingBox.height / 2; // div 中心的 y 坐标
|
||
|
||
const targetX = startX + sliderCaptchaBox.width + actionBoundingBox.width; // 向右拖动容器的宽度
|
||
const targetY = startY; // y 坐标保持不变
|
||
|
||
// 模拟鼠标拖动
|
||
await page.mouse.move(startX, startY); // 移动到 action 的中心
|
||
await page.mouse.down(); // 按下鼠标
|
||
await page.mouse.move(targetX, targetY, { steps: 20 }); // 拖动到目标位置
|
||
await page.mouse.up(); // 松开鼠标
|
||
|
||
// 在拖动后进行断言,检查action是否在预期位置,
|
||
const newActionBoundingBox = await sliderCaptchaAction.boundingBox();
|
||
expect(newActionBoundingBox?.x).toBeGreaterThan(actionBoundingBox.x);
|
||
|
||
// 到这里已经校验成功,点击进行登录
|
||
await page.waitForTimeout(300);
|
||
await page.getByRole('button', { name: 'login' }).click();
|
||
}
|