当警报为是和否按钮时,如何单击警报消息按钮。
我尝试过这样的方式:
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();
如何从警告信息中选择是按钮或否按钮?
答案 0 :(得分:1)
啊,你需要在onAlert中使用这段代码。
你还需要在try catch块中再次点击。
我的代码用于删除表格中的行并确认删除按钮上显示的警告。
target.frontMostApp().mainWindow() .tableViews()["Empty list"].cells()[0]
.dragInsideWithOptions({startOffset:{x:0.03, y:0.44},
endOffset:{x:0.81, y:0.50},duration:1});
target.frontMostApp().mainWindow().tableViews()["Empty list"].cells()[0]
.buttons()[0].tap();
UIATarget.onAlert = function onAlert(alert) {
alert.tapWithOptions({tapOffset:{x:0.73, y:0.72}});
}
try {
target.frontMostApp().alert().tapWithOptions({tapOffset:{x:0.72, y:0.78}});
}
catch (ex) {}