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スクリプトでポップアップウィンドウの(Y/N)選択でYをクリックするgebコードを書くには?
withConfirm(true) を使用すると、[OK] をクリックして確認ボックスをバイパスします。$() は、ダイアログ ボックスを担当するボタンの Jquery 要素です。.click() はクリックします
withConfirm(true) { $("Element responsible for download").click() }