rpa_uia_minimizeWindow
最小化窗口,窗口在JDA中一般指程序的顶层元素
1. 函数
rpa_uia_minimizeWindow(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. 示例
path = r'D:\std\WinFormsApplication.exe'
appId = rpa_uia_openApp(path)
if not appId:
rpa_showMsgBox('应用程序启动/连接异常')
rpa_exit()
# 等待窗口
rpa_uia_waitElement(appId, "Window1", timeout=10.0, index=0)
# 获取窗口状态
state = rpa_uia_getWindowState(appId, "Window1", index=0, waitElement=True)
print(state)
if state < 0:
print('错误码:%d,错误信息:%s' % (rpa_getLastErrorCode(), rpa_getLastErrorMsg()))
# 最大化
rpa_uia_maximizeWindow(appId, "Window1", index=0, waitElement=True)
rpa_delay(1)
# 还原
rpa_uia_restoreWindow(appId, 'Window1', index=0, waitElement=True)
rpa_delay(1)
# 最小化
rpa_uia_minimizeWindow(appId, "Window1", index=0, waitElement=True)
rpa_delay(1)
# 关闭
rpa_uia_closeWindow(appId, 'Window1', index=0, waitElement=True)
其中,Window1为程序WinFormsApplication.exe的顶层窗口,通过捕获元素功能捕获。