Forum Discussion
Hi,
Another possible reason is that page is not reloaded after Travel_Cost_Input.Click() command and thus Page.Wait returns immediately and before the confirmation message appears.
If the confirmation message must appear at this moment, I would recommend to replace
Page.Confirm.Button("OK").Click()
with
Page.WaitConfirm(2000).Button("OK").Click()
tried using that too.. but it doesnt work. It just says "Waiting for Confirm()". Also the Chrome extension is already installed.
- tristaanogre9 years agoEsteemed Contributor
What does your object inspector show for that Confirm object in TestComplete? I mean, you're calling it as Page.Confirm... under Chrome, does TestComplete see it as something different? Could you post a screenshot of your object browser or object spy so we can see what you see?
- kruttika9 years agoOccasional Contributor
It didnt solve the problem. It still persist. I am now using Firefox and it works perfectly fine there. but need to solve it for Chrome as well.