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

  • 相关阅读:
    centos安装vsftp
    php利用soap实现webservice 和利用soap调用其他语言的webservice
    php连接redis数据库 操作redis任务队列
    shopnc编译安装IM服务器node.js
    centos6.5 64位 yum install nginx的默认安装路径
    安装nfs服务器
    php扩展redis,编译安装redis服务
    x86_64编译JPEG遇到Invalid configuration `x86_64-unknown-linux-gnu'
    shopnc nginx优化配置文件
    nginx支持flv MP4 扩展nginx_mod_h264_streaming,nginx-rtmp-module-master,yamdi
  • 原文地址:https://www.cnblogs.com/kangyi/p/1564122.html
Copyright © 2011-2022 走看看