C# 等待用户与 White 的交互
我正在考虑使用 White 来实现我的简单 windows ui 自动化。首先,我使用 System.Diagnostics.Process 从我的应用程序运行外部应用程序。当外部应用程序打开时,将出现一个对话框,用户在其中插入一些文本,然后单击“确定”按钮。我需要的是等到对话框关闭或检测到单击“确定”按钮。我所需要的只是一些指示,表明用户已完成该对话框,我可以继续执行我的自动化任务。
有什么办法可以用白色来做到这一点吗?任何其他选择也欢迎!
Im thinking of using White for my simple windos ui automation. First i run external application from my application using System.Diagnostics.Process
. When the external application opens is going to give me a dialog where the user has insert some text and click OK button. What i need is to wait until the dialog is closed or detect the OK button is clicked. All i need is some indication that user is finished with that dialog and i can go on with my automation tasks.
Is there any way doing this with White? Any other options also welcome!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以在该对话框上设置标题,并安排计时器在主窗口的子窗口中查找子窗口。如果没有找到,您可以继续。 应该可以工作。
You can setup a title on that dialog, and schedule a timer to find a child window among Main window's children. If it's not found, you can proceed. Should work.
另一种方式:
Another way: