I have problem of going through selenium exception: NoSuchElementException.
code example:
from selenium.common.exceptions import NoSuchElementException
try:
popup = browser.find_element_by_xpath('//*)
popup.click()
except NoSuchElementException:
pass
with this i get crash on Django framework with above error type. What i need is to go through this exception and continue program. One option is to use:
except:
pass
but i need to collect exceptions elements.
Overall element is found by browser but can't be clicked:
Message: element click intercepted: Element <a class="dropdown-toggle" data-toggle="dropdown" href="#" rel="nofollow">...</a> is not clickable at point (654, 570).
Thank You for any suggestions.