My favorites | Sign in
Project Home Downloads Wiki Issues Source
Search
for
ChooseOkOnNextPrompt  
Choose ok on next prompt
Updated Feb 4, 2010 by ronaldma...@gmail.com

Description

Undo the effect of calling ChooseCancelOnNextPrompt. Note that Selenium's overridden window.prompt() function will normally automatically return true, as if the user had manually clicked OK, so you shouldn't need to use this command unless for some reason you need to change your mind prior to the next prompt. After any prompt, Selenium will resume using the default behavior for future prompts, automatically returning true (OK) unless/until you explicitly call ChooseCancelOnNextPrompt for each prompt.

Properties

Property name Property Description
condition(optional) (since version 0.0.4) Gets the result of evaluating the specified JavaScript snippet. Note that, by default, the snippet will run in the context of the "selenium" object itself, so this will refer to the Selenium object. Use window to refer to the window of your application, e.g. window.document.getElementById('foo'). If you need to use a locator to refer to a single element in your application page, you can use this.browserbot.findElement("id=foo") where "id=foo" is your locator. The result of the snipped should be true, 1, false or 0. When it is true or 1 the command will be executed, when it is false or 0 the command will be skipped and the test continues.

Diagram Example

This test is available in the CubicExTest project including the HTML pages. Check the DownloadingSources page to see how you can download and setup your Eclipse for this project.


Sign in to add a comment
Powered by Google Project Hosting