ElementList¶
- class splinter.element_list.ElementList(list, driver=None, find_by=None, query=None)¶
Bases:
object
List of elements. Each member of the list is (usually) an instance of
ElementAPI
.Beyond the traditional list methods, the
ElementList
provides some other methods, listed below.There is a peculiar behavior on ElementList: you never get an
IndexError
. Instead, you can anElementDoesNotExist
exception when trying to access an inexistent item in the list:>>> element_list = ElementList([]) >>> element_list[0] # raises ElementDoesNotExist
- property first¶
An alias to the first element of the list:
>>> assert element_list[0] == element_list.first
- is_empty()¶
Returns
True
if the list is empty.
- property last¶
An alias to the last element of the list:
>>> assert element_list[-1] == element_list.last