WaitPage method keeps waiting for page after the page loaded completely
SOLVED- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-06-2019
12:42 PM
06-06-2019
12:42 PM
WaitPage method keeps waiting for page after the page loaded completely
I used "Call Aliases.browser.WaitPage("https://*/WebStore/(Account)|(Checkout)/Order*",20000)" to wait for page "https://www.test.com/WebStore/Checkout/OrderDetails.aspx?ws=xxxxxxxxxxxxxxxxxxxx", but it keeps waiting for the page after the page is loaded completely until it runns out time. Is it because I was using a wrong WaitPage method?
Thanks!
Solved! Go to Solution.
2 REPLIES 2
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-06-2019
01:24 PM
06-06-2019
01:24 PM
Insteead of WaitPage, I'd navigate to the page and then call the "Wait" method on the page object...
Aliases.Browser.FirstPage.Link.Click();
Aliases.Browser.secondPage.Wait();
Robert Martin
[Hall of Fame]
Please consider giving a Kudo if I write good stuff
----
Why automate? I do automated testing because there's only so much a human being can do and remain healthy. Sleep is a requirement. So, while people sleep, automation that I create does what I've described above in order to make sure that nothing gets past the final defense of the testing group.
I love good food, good books, good friends, and good fun.
Mysterious Gremlin Master
Vegas Thrill Rider
Extensions available
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-06-2019
03:00 PM
06-06-2019
03:00 PM
Thank you!
