Description
Use the WaitLogin
method to delay the test run until a tested web page shows a login dialog box. To learn more, see Handling JavaScript Popups and Browser Dialogs.
Declaration
TestObj.WaitLogin(Timeout)
TestObj | A variable, parameter or expression that specifies a reference to one of the objects listed in the Applies To section | |||
Timeout | [in] | Required | Integer | |
Result | A Login object |
Applies To
The method is applied to the following object:
View Mode
To view this method in the Object Browser panel and in other panels and dialogs, activate the Advanced view mode.
Parameters
The method has the following parameter:
Timeout
The number of milliseconds to wait until the specified object becomes available. If Timeout is 0, the method returns immediately. If Timeout is -1, the wait time is infinite.
Result Value
The Login
object that corresponds to a login dialog that the web page is showing.
If the page is not showing any login dialogs, the method will return a stub object. To determine whether the method returns a valid object, use the Exists
property of the returned object. If the property returns False, the object is a stub object.
See Also
Login Method (Page Objects)
Handling JavaScript Popups and Browser Dialogs