in reply to Win32:: How to tell when Default browser url has loaded

Try this:
Call the function while the page is being loaded
sub Wait_For_Complete_Load { while($agent->{agent}->Document->readyState !~ /complete/i) { sleep(1); } }
Raghu
this works with IE