Huge delay between events when executing script
Hi,
I have a script that does functional web testing of my application. When I run the script, there is a huge delay between any of the events. I am simply trying to set the text in a text box and then click a button on my web page, and I end up with a 20-30 second delay between these events:
TestedApps.iexplore_AgencyLender.Run
Set iexplore = Aliases.iexplore1
Call iexplore.ToURL("https://5280-webdevl-02/firstapprearch_starlite/lender/webforms/default.aspx?schema=825033")
Set page = iexplore.pageLenderLogin
page.Wait
page.txtUserID.SetText("ksteel")
page.txtPassword.SetText("mypassword")
page.btnLogin.Click
This happens on every page I try to write a script for and causes my tests to run extremely long. I have checked all of the properties of my project and can't figure out why it would take so long between events. Any thoughts?
Thanks!