如何在GEB的弹出确认窗口中按'y'?

问题描述 投票:0回答:1

我正在尝试自动化文件下载功能。当我点击PDF链接时,会弹出下载确认窗口。如何编写geb代码以通过GEB脚本在弹出窗口中的(Y / N)选择中单击Y?

groovy geb
1个回答
0
投票

使用withConfirm(true)将通过单击okay绕过确认框。 $()是负责对话框的按钮的Jquery元素。 .click()点击一下

withConfirm(true) { $("Element responsible for download").click() } 
© www.soinside.com 2019 - 2024. All rights reserved.