Answers for "try catch with selenium.common.exceptions.NoSuchElementException: python"

2

python exception element not found

from selenium.common.exceptions import NoSuchElementException

try:
    if driver.find_element_by_class_name(test_element_class_name).is_displayed():
        print('found')
except NoSuchElementException:
    pass
Posted by: Guest on March-09-2020
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

Python Answers by Framework

Browse Popular Code Answers by Language