我的代码使用以下代码生成警报/消息框。
import win32api
win32api.MessageBox(0, 'You have reached the end of the data.', 'End of Data')
是否有一种方法可以测试消息是否出现,例如assert appears
之类的东西?理想情况下,我想使用PyTest进行此操作,但是使用其他框架的解决方案仍然会非常感激。测试文本框内的文本也很好,例如assert message == "You have reached the end of the data."