class Capybara::Selector

All Selectors below support the listed selector specific filters in addition to the following system-wide filters

* :id (String, Regexp, XPath::Expression) - Matches the id attribute
* :class (String, Array<String | Regexp>, Regexp, XPath::Expression) - Matches the class(es) provided
* :style (String, Regexp, Hash<String, String>) - Match on elements style
* :above (Element) - Match elements above the passed element on the page
* :below (Element) - Match elements below the passed element on the page
* :left_of (Element) - Match elements left of the passed element on the page
* :right_of (Element) - Match elements right of the passed element on the page
* :near (Element) - Match elements near (within 50px) the passed element on the page
* :focused (Boolean) - Match elements with focus (requires driver support)

### Built-in Selectors