Python Forum

Full Version: Object not Subscriptable
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Help post:
How do you select the second or third element with the same class name while using selenium?
For instance,
Trial=browser.find_element_by_class_name(‘indicator-diamond’)[1]

Output: TypeError: ‘WebElement’ object is not subscriptable
Have you looked at the docs? The methods for finding that return multiple elements have "element" as plural (i.e. find_elements_by_class_name for you).
(Mar-21-2020, 02:18 PM)ndc85430 Wrote: [ -> ]Have you looked at the docs? The methods for finding that return multiple elements have "element" as plural (i.e. find_elements_by_class_name for you).

thank you sir