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

  • 相关阅读:
    最大公约数
    九宫格
    Hanoi双塔问题(简单的枚举)
    最高分
    盒子
    CodeForces Round #303 Div. 2
    关于“被密码保护”的文章
    【学习】组合数的递推公式
    [FZYZOJ 1821] 一道果题
    [FZYZOJ 1889] 厨房救济
  • 原文地址:https://www.cnblogs.com/kangyi/p/1564122.html
Copyright © 2011-2022 走看看