# Find Elements

Pylenium provides 5 main ways to find elements:

* [contains](https://docs.pylenium.io/driver-commands/find-elements/contains)   get a <mark style="color:yellow;">single element</mark> by **TEXT**
* [find](https://docs.pylenium.io/driver-commands/find-elements/find)           find a <mark style="color:yellow;">list of elements</mark> by **CSS**
* [findx](https://docs.pylenium.io/driver-commands/find-elements/find_xpath)         find a <mark style="color:yellow;">list of elements</mark> by **XPATH**
* [get](https://docs.pylenium.io/driver-commands/find-elements/get)            get a <mark style="color:yellow;">single element</mark> by **CSS**
* [getx](https://docs.pylenium.io/driver-commands/find-elements/get_xpath)          get a <mark style="color:yellow;">single element</mark> by **XPATH**
