xst
51768c7c95
fix(admin): add exception handling for SQL retry in freight accounting flow
2026-07-23 17:49:29 +08:00
xst
4ef8af5c87
feat(report): enrich Chinese report with detailed test metadata, logs, screenshots and phase timeline
...
- Add test metadata extraction: case ID, priority, tags, description
- Show phase timeline extracted from test log output
- Include test log content (last 500 lines) in collapsible section
- Include screenshot file list in collapsible section
- Redesign table with 8 columns and expandable error details
2026-07-23 17:16:11 +08:00
xst
fa8a17eae8
refactor(test): move Chinese test metadata into function docstring
...
用例 docstring now contains structured metadata fields:
用例ID / 用例名称 / 优先级 / 标签
_report_cn uses regex to extract 用例名称 first, then falls back
to display_name and docstring first line.
2026-07-23 16:59:48 +08:00
xst
273f4f0225
fix(report): extract Chinese test name from docstring metadata field
...
Priority: 用例名称: xxx > display_name > docstring first line
2026-07-23 16:57:30 +08:00
xst
570aaef64b
fix(report): use utf-8-sig encoding for Chinese report to display correctly in browsers
...
The Chinese report now correctly shows:
司机APP接单到管理端核算打款完整流程 [通过] (96.8s)
2026-07-23 16:55:17 +08:00
xst
d1710cfcd6
feat(report): resolve Chinese test names from docstring in cn report
...
Test case docstring 【P0】 prefix is stripped for display.
报告中的用例名现在显示为: 司机APP接单到管理端核算打款完整流程
2026-07-23 16:50:47 +08:00
xst
f287c93cce
feat(report): auto-generate Chinese HTML report after test session via pytest_sessionfinish hook
...
Produces output/reports/report_cn.html alongside junit.xml and report.html
2026-07-23 16:42:59 +08:00
xst
6ff65ec5c8
feat(report): add pytest-html + junitxml report generation to pytest.ini
...
pytest-html generates self-contained HTML report at output/reports/report.html
junitxml output at output/reports/junit.xml for CI integration
2026-07-23 16:36:39 +08:00
xst
a361ba7053
fix(login): use text selectors for bottom nav tabs 首页/货源/我的
...
Replace coordinate tap with text-based UiSelector for reliability.
Add back-press loop to ensure app is on main page before checking login.
2026-07-22 17:31:19 +08:00
xst
f75a6f5ec9
feat(cross_end): add driver-to-settlement E2E test with SQL retry
...
- Add DriverFreightFlowPage (Android): 28-step flow covering accept/load/unload
- Add FreightAccountingPage (Web): accounting/audit/finance-payment/shipper-payment
- Add db_helper: update_risk_control_status via pymysql
- Fix ensure_logged_in: coordinate tap on 'mine' tab + login check
- Add test_driver_to_settlement.py: full cross-end E2E with SQL retry
Co-authored-by: xst <xst@ntocc.com >
2026-07-22 17:18:52 +08:00
xst
6f5668b7ec
feat(cross_end): add cross-platform E2E test support for freight full flow
...
Add tests/cross_end/ directory with dual-driver architecture:
- conftest.py: Playwright admin_page + Appium app_driver fixtures
- Admin Page Objects: FreightSourcePage, WaybillManagementPage, SettlementPage
- App Page Objects: DriverOrderListPage, DriverTransportPage, DriverHomePage (re-export)
- test_freight_full_flow.py: 8-step end-to-end test (publish → accept → load → unload → accounting → review → shipper pay → platform pay)
- Shared context dict for cross-step data passing
- Graceful skip when either Playwright or Appium is unavailable
- All selectors marked with ⚠️ placeholders for discovery against real environments
Add cross_end marker to pytest.ini for selective execution.
2026-07-21 09:10:08 +08:00
xst
b822428a2a
feat(mini_program): 小程序端从 Playwright 切换为 miniprogram-automator
...
驱动方式: Python pytest → subprocess → node runner.js → miniprogram-automator → 微信开发者工具
架构: tests/web/mini_program/automator/ (Node.js) + conftest.py (Python subprocess 桥接)
前置条件: 微信开发者工具 + 开启服务端口 + npm install + uni-app build:mp-weixin
2026-07-15 17:34:25 +08:00
xst
03e152baab
feat: 重构测试框架 — 覆盖 6 端 (管理端 + 小程序 + 4 个移动端)
...
目录结构:
tests/web/admin/ 管理端 (Playwright)
tests/web/mini_program/ 司机端小程序 (Playwright/微信 WebView)
tests/app/driver_android/ 司机安卓 (Appium)
tests/app/shipper_android/ 货主安卓 (Appium)
tests/app/driver_ios/ 司机苹果 (Appium)
tests/app/shipper_ios/ 货主苹果 (Appium)
公共模块:
tests/app/_shared.py driver+ensure_logged_in 工厂
tests/app/_base_page.py App Page Object 基类
配置:
test_config.yaml 拆分为 6 个独立 section + 货主账号
2026-07-15 14:02:08 +08:00
xst
4b4b83a2c0
fix: save_auth 改为纯手动模式,不再尝试自动填表
...
用户自己在浏览器中完成验证码登录后按 Enter,脚本仅负责检测并保存 storage_state
2026-07-15 10:59:24 +08:00
xst
49eb9bcd2b
fix: 适配 hash 路由登录页 (/#/login)
2026-07-15 10:55:08 +08:00
xst
7c5a4c5de7
fix: Playwright API camelCase → snake_case (Python 版)
...
- getByPlaceholder → get_by_placeholder
- getByRole → get_by_role
- getByText → get_by_text
- getByTestId → get_by_test_id
2026-07-15 10:52:16 +08:00
xst
7b4a54f1ce
feat: 框架增加登录态复用机制,绕过图形验证码
...
Web 端 (storage_state):
- 新增 tests/web/save_auth.py: 手动登录后保存 cookies+localStorage
- conftest.py: skip_login:true 时自动加载 storage_state,跳过 UI 登录
- ensure_login fixture: 登录态有效则直接通过,过期则给出明确指引
App 端 (noReset):
- conftest.py: ensure_logged_in fixture,手动登录后无需重新登录
- noReset=true 持久化登录态,未登录自动检测并给出明确引导
配置文件:
- web.skip_login: true + storage_state_dir
- app.skip_login: true + 手动登录说明
2026-07-15 10:47:34 +08:00
xst
aade9e39d0
feat: 基于 UI 自动化最佳实践的测试框架骨架搭建
...
- tests/config: 环境配置 (.yaml) + 配置加载器
- tests/utils: 日志工具 + 测试数据生成器
- tests/web: Playwright conftest + Page Object 基类 + 登录页 + 导航栏组件 + 登录用例(6条)
- tests/app: Appium conftest + Page Object 基类 + 司机端首页 + 登录用例(3条)
- pytest.ini: markers(p0/p1/p2/smoke/web/app) + 运行配置
- 所有用例按最佳实践采用 Page Object 模式 + data-testid 优先定位 + 失败自动截图
2026-07-15 10:24:22 +08:00