Solved
Forum Discussion
6 Replies
- AlexKaras
Champion Level 1
Hi,
.Refresh() is a method provided by TestComplete and it does not reload the page.
Try, for example,
Browser.Page('*').Keys("[F5]");
Browser.Page('*').Wait();
Does it help?
- SK2Contributor
I am receiving following message:
Unable to find the object Page("*"). See Details for additional information.
- AlexKaras
Champion Level 1
Hi,
Try to replace the asterisk with your real tested address. Or use not page but its containing window. The general idea is to send F5 key to the browser to make it reload the page.