Answers for "how to fix element is not found error in selenium python"

0

selenium how to handle element not found python

try:
       elem = driver.find_element_by_xpath(".//*[@id='SORM_TB_ACTION0']")
       elem.click()
except nosuchelementexception:
       pass
Posted by: Guest on March-01-2020

Code answers related to "how to fix element is not found error in selenium python"

Python Answers by Framework

Browse Popular Code Answers by Language