Watin & IE9 - Cant click ok buttons

ε祈祈猫儿з 提交于 2019-11-29 14:55:18

WatiN 2.1 has recently been released which addresses a number of IE9 issues. You can download it from http://watin.org/ or update using NuGet:

PM> update-package watin

Jawad Hashim

I was facing the same issue and no matter what I do it was not working until I found a workaround which take time but work for me.

The default time to elapse for WaitUntilExists() is 30 secs so when using it in IE9 provide extended time limit as following.

handler.WaitUntilExists(40); // or whatever time suits you above 30

It certainly take time but it works.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!