zoukankan      html  css  js  c++  java
  • 使用UI Automation实现自动化测试3

     

     

    Chapter 3  UI Automation中的几个重要属性

    Control Tree of the AutomationElement

    UI Automation控件树中,根节点为Desktop window, 其他运行在用户桌面的窗体都作为Desktop window的子节点。

    如下图所示:
                

    Desktop window可通过AutomationElement.RootElement属性获取,子节点中的窗体或对话框可通过

    AutomationElement.RootElement.FindAll(TreeScope.Descendants, condition)


    AutomationElement.RootElement.FindFirt(TreeScope.Descendants, condition)来获取.

     

     

    AutomationElement property

     

    UI Automation中有如下几个重要属性:

    1.         AutomationIdProperty: 通过AutomationId来查找AutomationElement

    2.         NameProperty通过控件的Name属性来查找AutomationElement

    3.         ControlType通过控件的类型来查找AutomationElement

    4.         AutomationId: 唯一地标识自动化元素,将其与同级相区分。

    5.         Name:  WPF 按钮的Content 属性、Win32 按钮的Caption 属性以及 HTML 图像的ALT 属性都映射到 UI 自动化视图中的同一个属性 Name

     

    注:PropertyCondition类是用来对相关属性进行条件匹配,在控件树中查找控件时,可以通过最佳匹配来找到相应的控件。

    如下代码列出了使用不同的属性来构建PropertyCondition,通过PropertyCondition来查找控件树中的控件.
     

     

     

    Code

    Open Source code

        Github: https://github.com/cumtkangyi/ATP

  • 相关阅读:
    try,except,finally的用法
    python实现蓝牙通信
    分布式全局ID的几种生成方案
    为什么要两次调用encodeURI来解决乱码问题
    jenkins配置到gitlab拉代码
    查看IOS-app证书到期时间
    使用SSH方式实现Git远程连接GitHub/gitlab
    Git 分支
    jenkins构建后操作archive the artfacts的用法
    MAC 安装jenkins
  • 原文地址:https://www.cnblogs.com/kangyi/p/1564122.html
Copyright © 2011-2022 走看看