in reply to execution status of gotoURL in Win32::IEAutomation
# WaitforDone() Waits till IE had came out of busy state and document is loaded completly. This will poll IE for every one second and check its busy state and document complete state, before we move on.
Click($nowait); Clicks the link and waits till document is completely loaded. As it uses click method of DOM, it supports clicking link with javascript in it. $nowait: This is optional. Giving this argument as 1 (true boolean value) makes your code not to wait for complete page loading after clicking link. This is useful if you need to interact with any dialog (like logon dialog) after clicking the link. (please see logon() method example for details)
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: execution status of gotoURL in Win32::IEAutomation
by Anonymous Monk on Nov 23, 2007 at 04:46 UTC | |
by Anonymous Monk on Nov 23, 2007 at 07:21 UTC |