Settimeout

Specifies the amount of time that Selenium will wait for actions to complete. Actions that require waiting include "open" and the "waitFor*" actions. The default timeout is 30 seconds.

Required Attributes
timeout
a timeout in milliseconds, after which the action will return with an error
Usage Examples
Example #1
<selenium baseurl="http://www.google.com">
   
<open url="/" />
   
<setTimeout timeout="120000" />
</selenium>