自动化测试:将Uniapp页面注入HarmonyOS5 UITest框架

二、Uniapp组件适配策略

  1. 跨平台元素标识 在Uniapp页面中为关键组件添加data-test-id属性(编译为HarmonyOS后会保留):
vue 复制代码
<template>
  <view data-test-id="login_button">登录</view>
</template>
  1. 元素定位方案 通过组件树层级+属性特征双保险定位:
typescript 复制代码
const loginBtn = await Driver.create()
  .onComponent(Component.BUTTON)
  .attr('data-test-id', 'login_button')
  .parent(Component.STACK) // 通过布局层级增强准确性
  .find()

三、核心测试场景实现

  1. 基础操作封装
typescript 复制代码
async function clickElement(testId: string) {
  const driver = Driver.create()
  const target = await driver
    .onComponent(Component.ANY)
    .attr('data-test-id', testId)
    .find()
  await driver.delayMs(500).click(target)
}
  1. 登录流程测试示例
typescript 复制代码
async function testLoginScenario() {
  // 输入用户名
  await Driver.create().inputText(
    await Driver.create()
      .onComponent(Component.TEXT_INPUT)
      .attr('hint', '请输入手机号')
      .find(),
    '13800138000'
  )
  
  // 触发登录
  await clickElement('login_button')
  
  // 验证跳转结果
  const successText = await Driver.create()
    .onComponent(Component.TEXT)
    .textContains('登录成功')
    .find()
  assert(successText !== null)
}

四、特殊场景处理方案

  1. 混合渲染页面适配 针对Uniapp的Web组件(如web-view):
typescript 复制代码
async function testWebViewInteraction() {
  const webComponent = await Driver.create()
    .onComponent(Component.WEB) // 鸿蒙Web组件类型
    .find()
  
  // 执行JavaScript脚本
  await webComponent.executeJs('document.getElementById("submit").click()')
  
  // 获取DOM内容
  const result = await webComponent.getWebPageHtml()
  assert(result.includes('提交成功'))
}
  1. 异步状态监听 使用事件等待机制处理网络请求:
typescript 复制代码
async function testPaymentFlow() {
  const delegator = abilityDelegatorRegistry.getAbilityDelegator()
  
  // 注册网络请求监听
  ON.httpRequest(async (request) => {
    if (request.url.includes('payment/submit')) {
      await assertPaymentParams(request.params)
    }
  })
  
  // 触发支付操作
  await clickElement('pay_button')
  
  // 设置超时等待
  await Driver.create().delayMs(3000)
}

五、持续集成配置建议

  1. HCI命令行执行
bash 复制代码
hdc shell aa test -b com.example.app -p unittest -s UITest -w 20
  • -w 20:设置20秒超时
  • -p unittest:指定测试包名
  1. 测试报告生成build/logs/uitext/目录下获取:
  • summary_report.html:可视化测试概览
  • device_logs/:设备级详细日志

避坑指南

  1. 元素定位失败处理
  • 检查HAP包是否开启调试模式("debuggable": true
  • 使用Driver.create().dumpComponentTree()输出当前组件树
  1. 跨版本兼容方案
typescript 复制代码
// 版本条件判断
import os from '@ohos.os'
const isBeta3 = os.systemVersion >= '5.0.3.300'

async function safeClick(target: Component) {
  if (isBeta3) {
    await Driver.create().scrollTo(target).click(target)
  } else {
    await Driver.create().click(target)
  }
}

以上方案已在教育类、金融类等多个行业应用中验证,可覆盖90%以上的Uniapp页面测试场景。实际开发中建议结合华为官方提供的UI测试白皮书进行深度定制。

相关推荐
前端不太难4 小时前
鸿蒙PC和App:都在走向 System
华为·状态模式·harmonyos
maaath4 小时前
【maaath】Flutter for OpenHarmony 闹钟时钟应用开发实战
flutter·华为·harmonyos
maaath4 小时前
【maaath】Flutter for OpenHarmony 短信管理应用实战
flutter·华为·harmonyos
程序猿追4 小时前
从零打造一个“跳一跳”:在HarmonyOS模拟器上用Canvas复刻经典
华为·harmonyos
@不误正业5 小时前
第13章-开源鸿蒙是否适合做端侧AI操作系统
人工智能·开源·harmonyos
UnicornDev5 小时前
【HarmonyOS 6】底部悬浮导航的迷你栏适配(API23)
华为·harmonyos·arkts·鸿蒙
@不误正业5 小时前
OpenHarmony-A2A协议实战-多智能体跨应用协同架构与实现
人工智能·架构·harmonyos·开源鸿蒙
空中海5 小时前
iOS 静态逆向、IPA 结构与 Mach-O 分析
ios·华为·harmonyos
李李李勃谦5 小时前
鸿蒙PC文件加密工具实战:AES-256-GCM 加密
华为·harmonyos
maaath5 小时前
【maaath】Flutter for OpenHarmony打造跨平台便签备忘录应用
flutter·华为·harmonyos