pywinauto获取MessageBox消息内容

时间:2016-07-13 08:45:58

标签: python windows ui-automation messagebox pywinauto

我用谷歌搜索但没有找到答案。 在 python 2.7,Windows 中,很容易通过

获取TextBox内容或MessageBox标题
app.Dialog.Edit.WindowText()
app.Dialog.WindowText()

但是我无法弄清楚如何获取消息内容,如图中所示: enter image description here

我尝试了类似.Message.Information的内容,但没有用。

1 个答案:

答案 0 :(得分:2)

它不是一个编辑框。使用以下内容:

 app.Dialog.Static1.window_text()

 app.Dialog.Static2.window_text()

如果消息框包含图标(它将匹配为Static1)。