当警报具有是和否按钮时如何单击警报消息按钮。
我试过这样的方式:
target.frontMostApp().alert().buttons()["buttonName"].tap();
target.frontMostApp().alert().buttons()["index"].tap();
并且 Ui Automation 单击任一按钮并将以下语法显示为:
target.frontMostApp().alert().cancelButtons().tap();
当我手动单击默认按钮时它不起作用。并且还尝试了以下方法。
target.frontMostApp().alert().cancelButtons()["index/buttonname"].tap();
target.frontMostApp().alert().defaultButtons()["index/buttonname"].tap();
如何从警报消息中选择是按钮或否按钮?