rpa_uia_selectComboBox
选择下拉框,该函数仅对ComboBox有效
1. 函数
rpa_uia_selectComboBox(appId, elementId, value, index=0, waitElement=True)
- appId:字符串类型,程序Id
- elementId:字符串类型,通过捕获元素功能保存的元素Id
- value:字符串类型,选择的文本
- index:整数类型,元素序号,若捕获到的元素存在多个时,标识操作的元素序号,索引从0开始
- waitElement:bool类型,是否等待元素出现。若值为True,函数先等待元素出现,再执行操作;若值为False,函数直接执行操作。默认等待10秒;
2. 返回值
若执行成功返回True,执行失败返回False,通过rpa_getLastErrorCode()获取错误码,rpa_getLastErrorMsg()获取错误信息。
3. 示例
# 获取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)
# 获取ComboBox2的所有可选文本
texts2 = rpa_uia_getElementTexts(appId, "ComboBox2", index=0, waitElement=True)
# 选中Item 2
rpa_uia_selectComboBox(appId, "ComboBox2", 'Item 2', index=0, waitElement=True)
# 获取ComboBox2的选中文本
selectedText2 = rpa_uia_getComboBoxSelected(appId, "ComboBox2", index=0, waitElement=True)