uiautomation的使用

1.通过父节点获取对应的子节点

import uiautomation as auto
 
def find_control(control, compare=lambda c: True, maxDepth: int = 0xFFFFFFFF):
    """
    返回单个Control对象
    control:父节点,查找父节点下的子孙节点
    compare:自定义过滤函数,函数只返回True、False,当返回为True时,会保留节点
    maxDepth:查询深度,默认查找control的所有子孙节点,maxDepth=1时,查询control的第一个子节点,maxDepth=2时,查询第一个子节点的子节点,依次类推
    """
 
    def temp_func(control, compare, depth=0):
 
        if depth >= maxDepth:
            return None
        #获取底下的孩子结点
        child_list = control.GetChildren()
        #循环查询孩子结点,查到对应的结点则返回该结点,如果不存在则往下一层查询
        for child in child_list:
            if compare(child):
                return child
            else:
                child = temp_func(child, compare, depth + 1)
                if child:
                    return child
 
    return temp_func(control, compare)
 
root = auto.GetRootControl()
#获取钉钉控制窗口
dd_win = root.WindowControl(Name="钉钉",ClassName="StandardFrame_DingTalk")
#激活钉钉窗口
dd_win.SetActive()
#关闭钉钉窗口
dd_win_min = find_control(dd_win,lambda a:a.GetLegacyIAccessiblePattern().Name == "关闭" and a.Name == "关闭")
dd_win_min.Click()

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
Python uiautomation 是一个基于 Windows UI 自动化库的 Python 库,可以用于自动化测试、GUI 自动化等场景。以下是使用 Python uiautomation 的详细步骤: 1. 安装 Python uiautomation 可以使用 pip 命令来安装 Python uiautomation: ``` pip install uiautomation ``` 2. 导入 uiautomation 库 在 Python 代码中导入 uiautomation 库: ```python import uiautomation as auto ``` 3. 查找 UI 元素 使用 uiautomation 库提供的方法查找 UI 元素,比如通过元素名称、元素类型、元素位置等方式查找元素: ```python # 通过元素名称查找元素 element = auto.WindowControl(searchDepth=1, ClassName='Chrome_WidgetWin_1', SubName='Google Chrome') # 通过元素类型查找元素 element = auto.ButtonControl(searchDepth=2, ClassName='Button', AutomationId='123') # 通过元素位置查找元素 element = auto.WindowControl(searchFromControl=desktop, AutomationId='Desktop') ``` 4. 操作 UI 元素 使用 uiautomation 库提供的方法操作 UI 元素,比如单击、双击、输入文本等操作: ```python # 单击元素 element.Click() # 双击元素 element.DoubleClick() # 输入文本 element.SendKeys('hello world') ``` 5. 获取 UI 元素属性 使用 uiautomation 库提供的方法获取 UI 元素的属性,比如元素名称、元素类型、元素位置等: ```python # 获取元素名称 name = element.Name # 获取元素类型 controlType = element.ControlType # 获取元素位置 rect = element.BoundingRectangle ``` 以上就是使用 Python uiautomation 库的详细步骤。需要注意的是,uiautomation 库只能在 Windows 操作系统上使用

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值