kaiiii
6 years agoRegular Contributor
page is taking too much time after click on Confirm dialoxbox
Hello,
Here i am trying to handle a confirm dialogbox when i manually click on "OK" button page is not taking too much time to load but when i execute it with my script it's taking too much time to load the page.
Also i had tried all kind of Action methods like(Click, ClickM, ClickButton, DblClick)
Please check the below code
Set Ok_dialogbox = page.FindChild("ObjectType", "Confirm", 5000)
If (Ok_dialogbox.Exists) Then
page.Confirm.Button("OK").Click
Log.Message("Message text: " + page.Confirm.Message)
End IF