zoukankan      html  css  js  c++  java
  • UIAutomator定位简介

    UIAutomator元素定位是 Android 系统原生支持的定位方式,虽然与 xpath 类似,但比它更加好用,且支持元素全部属性定位.定位原理是通过android 自带的android uiautomator的类库去查找元素。 Appium元素定位方法其实也是基于Uiautomator来进行封装的。

    使用方法 find_element_by_android_uiautomator() 可以运用UiAutomator元素定位。

    定位方法

    • id定位
    • text定位
    • class name定位

    id定位

    id定位是根据元素的resource-id属性来进行定位,使用 UiSelector().resourceId()方法即可。

    by_Uiautomator.py

    from find_element.capability import driver

     

    driver.find_element_by_android_uiautomator

        ('new UiSelector().resourceId("com.tal.kaoyan:id/login_email_edittext")').send_keys('zxw1234')

     

    driver.find_element_by_android_uiautomator

        ('new UiSelector().resourceId("com.tal.kaoyan:id/login_password_edittext")').send_keys('zxw123456')

     

    driver.find_element_by_android_uiautomator

        ('new UiSelector().resourceId("com.tal.kaoyan:id/login_login_btn")').click()

     

    text定位

    text定位就是根据元素的text属性值来进行定位,new UiSelector()

     

    driver.find_element_by_android_uiautomator

        ('new UiSelector().text("请输入用户名")').send_keys('zxw1234')

    class name定位

    与Appium class定位方式一样,也是根据元素的class属性来进行定位。

    driver.find_element_by_android_uiautomator

        ('new UiSelector().className("android.widget.EditText")').send_keys('zxw1234')

  • 相关阅读:
    HTML简介(一)
    Bootstrap简介--目前最受欢迎的前端框架(一)
    命名空间--名称解析规则
    SpringMVC概述(2)
    MVC模型概述(1)
    Luogu P2831 【NOIP2016】愤怒的小鸟|DP
    【学习笔记】凸包
    【学习笔记】Floyd的妙用
    Luogu P2886 [USACO07NOV]牛继电器Cow Relays|最短路,倍增
    Luogu P5463 小鱼比可爱(加强版)|树状数组
  • 原文地址:https://www.cnblogs.com/xuzhongtao/p/9723185.html
Copyright © 2011-2022 走看看