rpa_uia_getElementTexts
获取元素可选内容,通常为该控件子项文本的列表,如ComboBox、ListView
1. 函数
rpa_uia_getElementTexts(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()
# 获取ComboBox1的可选文本
texts1 = rpa_uia_getElementTexts(appId, "ComboBox1", index=0, waitElement=True)
# 选中Item 3
rpa_uia_selectComboBox(appId, "ComboBox1", 'Item 3', index=0, waitElement=True)
# 获取ComboBox1的选中文本
selectedText1 = rpa_uia_getComboBoxSelected(appId, "ComboBox1", index=0, waitElement=True)
其中,WinFormsApplication.exe的界面如下: