0
A
答えて
1
StoreAlertとStoreConfiramtion警告メッセージの[OK]ボタンを
をクリックする方法を説明してくださいstoreAlert
Returns:
The message of the most recent JavaScript alert
Retrieves the message of a JavaScript alert generated during the previous action, or fail if there were no alerts.
Getting an alert has the same effect as manually clicking OK. If an alert is generated but you do not consume it with getAlert, the next Selenium action will fail.
Under Selenium, JavaScript alerts will NOT pop up a visible alert dialog.
Selenium does NOT support JavaScript alerts that are generated in a page's onload() event handler. In this case a visible dialog WILL be generated and Selenium will hang until someone manually clicks OK.
storeConfirmation
Returns:
the message of the most recent JavaScript confirmation dialog
Retrieves the message of a JavaScript confirmation dialog generated during the previous action.
By default, the confirm function will return true, having the same effect as manually clicking OK. This can be changed by prior execution of the chooseCancelOnNextConfirmation command.
If an confirmation is generated but you do not consume it with getConfirmation, the next Selenium action will fail.
NOTE: under Selenium, JavaScript confirmations will NOT pop up a visible dialog.
NOTE: Selenium does NOT support JavaScript confirmations that are generated in a page's onload() event handler. In this case a visible dialog WILL be generated and Selenium will hang until you manually click OK.
関連する問題
- 1. Selenium IDEで後で使用するための値を保存
- 2. 既に保存されているvarをSelenium IDEに保存
- 3. Selenium IDEのファイルに保存された値
- 4. Selenium IDEレコーディングFirefoxのファイルを開くまたは保存する
- 5. Selenium IDE - アレイの値を加算する
- 6. 現在のURLを保存してから、後でSelenium IDE
- 7. OpenまたはSelenium IDEのファイルウィンドウを保存
- 8. Selenium IDE testscript to Selenium IDE
- 9. Selenium IDEで選択する値
- 10. クロムクッキーを保存するSelenium
- 11. Selenium IDEとSelenium builder
- 12. Selenium IDEとSelenium RCを理解する
- 13. クリックなしのSelenium-IDE hrefの値
- 14. JSONの値 - キャンバス - Selenium IDEとSelblock
- 15. Selenium IDEのテキストをクリックするには?
- 16. Selenium IDEダイナミックID
- 17. Selenium IDEキャプチャスクリーンファイル名
- 18. Selenium IDE - ラジオボタンエラー
- 19. Selenium IDE Storeコマンド
- 20. jmeter + Selenium iDE
- 21. Selenium IDEのアラートに関する問題
- 22. Selenium IDEでクエリーストリング値のURLを解析する
- 23. Selenium IDE - 要素が存在するまでリフレッシュ
- 24. Selenium IDE> addコマンド
- 25. Selenium IDE - TypeError:document.getElementById(..)is null
- 26. データベースに値を保存するDjango
- 27. selenium IDEでソースイメージの値を返す方法は?
- 28. Delphi IDEを使用してブレークポイントを保存するには?
- 29. selenium ideでif/elseを使用する
- 30. Selenium IDEがXML応答をアサートする
storeAlertのドキュメントの最後の2段落を読んでください。警告メッセージが表示された場合、あなたは立ち往生しています。 Seleniumは自動的に関数をインターセプトするためにロードするすべてのページに対してwindow.alertを再定義する必要があります。ページがonloadイベントの前にメッセージを警告する場合、Seleniumにはそのような機会はありません。 (ネイティブのwindow.alertを想定し、JSウィジェットは想定していません)。 –