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

  • 相关阅读:
    这才是世上最全的“软件测试”思维导图!
    Scrum3.0 敏捷开发白皮书
    敏捷软件质量保证的方法与实践
    C# DataGridView 列的显示顺序
    Xamarin.android 重写axml控件
    Xamarin控件使用之GridView
    Sql 的 RAISERROR用法
    Xamarin.Android 怎么定义一个按钮和返回键功能一样回到上一个界面
    Xamarin.android Activity动画切换效果实现
    Xamarin.Android之封装个简单的网络请求类
  • 原文地址:https://www.cnblogs.com/kangyi/p/1564122.html
Copyright © 2011-2022 走看看