监控 python 中的进程
Monitoring the process in python
我正在使用 pywinauto 打开应用程序并关闭对话框。
我能够做到这一点,但我想从我启动应用程序到应用程序关闭期间检查对话框。实现它的最佳方法是什么?
本指南包含所有必要的方法:Waiting for Long Operations。您需要的是等待对话框在 20 秒内关闭的方法 dialog_spec.wait_not('exists', timeout=20)
。
我正在使用 pywinauto 打开应用程序并关闭对话框。 我能够做到这一点,但我想从我启动应用程序到应用程序关闭期间检查对话框。实现它的最佳方法是什么?
本指南包含所有必要的方法:Waiting for Long Operations。您需要的是等待对话框在 20 秒内关闭的方法 dialog_spec.wait_not('exists', timeout=20)
。