rpa_uia_selectElement

选中元素,支持的元素类型包括RadioButton、TreeViewItem、ListItem

1. 函数

rpa_uia_selectElement(appId, elementId, index=0, waitElement=True)

  • appId:字符串类型,程序Id
  • elementId:字符串类型,通过捕获元素功能保存的元素Id
  • index:整数类型,元素序号,若捕获到的元素存在多个时,标识操作的元素序号,索引从0开始
  • waitElement:bool类型,是否等待元素出现。若值为True,函数先等待元素出现,再执行操作;若值为False,函数直接执行操作。默认等待10秒;

2. 返回值

若执行成功返回True,执行失败返回False,通过rpa_getLastErrorCode()获取错误码,rpa_getLastErrorMsg()获取错误信息。

3. 示例

# 获取所有RadioButton的文本
count = rpa_uia_getElementCount(appId, "RadioButton", False)
for index in range(count):
    text = rpa_uia_getElementText(appId, "RadioButton", index, False)
    print(text)

# 选中第一个RadioButton
rpa_uia_selectElement(appId, "RadioButton", index=0, waitElement=True)

# 获取所有RadioButton的选中状态
for index in range(checkCount):
    state = rpa_uia_getElementProp(appId, 'RadioButton', 'selected', index, waitElement=True)
    if rpa_getLastErrorCode() > 0:
        print('错误码:%d,错误信息:%s' % (rpa_getLastErrorCode(), rpa_getLastErrorMsg()))
    print(str(state))
powered by Gitbook修订时间: 2021-04-15 15:56:54

找到相关内容

    未找到""相关内容

    找到相关内容

      未找到""相关内容