Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试自动化文件下载功能。单击 PDF 的链接时,会弹出下载确认窗口。如何编写geb代码以通过GEB脚本在弹出窗口中的(Y / N)选择中单击Y?
使用 withConfirm(true) 将通过单击确定绕过确认框。$() 是负责对话框的按钮的 Jquery 元素。.click() 进行点击
withConfirm(true) { $("Element responsible for download").click() }