naveen dayalan
naveen dayalan

Reputation: 49

Close a browser window without receiving the "Do you want to close this window" prompt

How can I handle a browser window without receiving the "Do you want to close this window prompt?"

Actually ie Window close while click on OK button, but i'm getting this prompt message enter image description here

enter image description here

kindly help me to how to solve this. i don't want this prompt message while click on OK button.

ie.navigate Mod_Url

ie.Document.getElementsByTagName("button").Item(1).Click

Upvotes: 0

Views: 96

Answers (1)

Xudong Peng
Xudong Peng

Reputation: 2350

I think what you are browsing should be an http website instead of https.

If you are sure that this website is safe, you can try to modify the security settings:

IE tools -> Internet options -> Security -> Trusted sites -> Sites -> Uncheck option Require server verification (https:) for all sites in this zone

Adding http://xx.xxx.com(the website url you accessed) to trust site list.

Upvotes: 1

Related Questions