rpa_uia_getListSelected
获取列表选中文本,仅对列表框ListView有效
1. 函数
rpa_uia_getListSelected(appId, elementId, index=0, waitElement=True)
- appId:字符串类型,程序Id
- elementId:字符串类型,通过捕获元素功能保存的元素Id
- index:整数类型,元素序号,若捕获到的元素存在多个时,标识操作的元素序号,索引从0开始
- waitElement:bool类型,是否等待元素出现。若值为True,函数先等待元素出现,再执行操作;若值为False,函数直接执行操作。默认等待10秒
2. 返回值
返回列表选中文本,若列表框选中一项,返回字符串类型,若选中多项,返回列表
通过rpa_getLastErrorCode()获取错误码,rpa_getLastErrorMsg()获取错误信息。
3. 示例
path = r'D:\std\WinFormsApplication.exe'
appId = rpa_uia_openApp(path)
if not appId:
rpa_showMsgBox('应用程序启动异常')
rpa_exit()
# 获取列表框可选文本
texts = rpa_uia_getElementTexts(appId, 'List', index=0, waitElement=True)
# 选中第二个
rpa_uia_selectElement(appId, "ListItem", index=1, waitElement=True)
# 获取选中内容
texts = rpa_uia_getListSelected(appId, 'List', index=0, waitElement=True)
if rpa_getLastErrorCode() > 0:
print('错误码:%d,错误信息:%s' % (rpa_getLastErrorCode(), rpa_getLastErrorMsg()))
else:
print(texts)