Hi all !
I have written some code that basically is supposed to wait until a
blank Firefox window opens us (caption is by default "Mozilla Firefox").
Then it activates the browser URL field, pastes a previously captured
URL and hits return to load that page.
Then it waits until the new Firefox window opens up (it has "1-Click"
in its caption) AND the browserURL contains "/dummy/".
At this point I am not sure how to modify the wait command to actually
wait until the page has finished loading, before the next command
*Keys.....gets executed.
Is there a way to check for browser status bar showing "Done" in the
above wait.until (exp) command ?
The codes right now is :
....
wait.until (activewindow("=firefox,&,Mozilla Firefox"))
*Keys %d{w3}^v{w3}{en}
wait.until (activewindow ("=firefox,&,*1-Click*") &&
(find(browserURL("firefox"),"/dummy/")!=-1))
*Keys {w15}{ta 13}{sp}
....
Thanks for any help
Cheers
Kam