I\'m trying to test with selenium webdriver. My version of selenium is 2.33 and the browser is Firefox. The scripting language is python
Now when I call the method <
find_element_* raises selenium.common.exceptions.NoSuchElementException
if element is not found.
find_elements_* return empty list if element is not found.
Both functions does not stuck.
According to Selenium documentation:
4.1. Locating by Id
Use this when you know id attribute of an element. With this strategy, the first element with the id attribute value matching the location will be returned. If no element has a matching id attribute, a NoSuchElementException will be raised.
...
4.2. Locating by Name
Use this when you know name attribute of an element. With this strategy, the first element with the name attribute value matching the location will be returned. If no element has a matching name attribute, a NoSuchElementException will be raised.