Click On Element Under Div
I'm trying to click on a radio button located under an hidden pop-up box. The problem is, selenium keeps clicking on the hidden pop-up box instead of the radio button and throws an
Solution 1:
element.SendKeys(Keys.Escape);
will close the popup, then you can click.
Post a Comment for "Click On Element Under Div"