I'm trying to create a script that would click on every link on a given URL, but occasionally there are pop-ups/overlays that appear that block the link.
Would be be possible to detect these pop-ups/overlays using Selenium or Javascript?
I've tried using is_displayed
, is_enabled
, and EC.element_is_clickable
but nothing seems to work.
EDIT: I'm hoping to find a way to detect the blocking element without having to click.