(I\'ve looked at many other similar posts on SO and have unfortunately not been able to solve this problem, so here goes...)
I\'m using Selenium WebDriver (C# implementa
One more possible workaround can be like repeating clicking like:
Btn.click(); Btn.click();
Because 1st click just set focus and 2nd one performs the real click. It worked for me.