# Element Commands

- [Find Elements](/element-commands/find-elements.md): Commands to find elements within the context of another element.
- [Element.should()](/element-commands/should.md): A collection of expected conditions against an Element.
- [Actions](/element-commands/actions.md): The commands that perform actions against the elements.
- [check](/element-commands/actions/check.md): The command to select a checkbox or radio buttons.
- [clear](/element-commands/actions/clear.md): The command to clear the input of the current element.
- [click](/element-commands/actions/click.md): The command to click the element.
- [deselect](/element-commands/actions/deselect.md): The command to deselect an \<option> within a multi \<select> element.
- [double\_click](/element-commands/actions/double_click.md): The command to double click the element.
- [drag\_to](/element-commands/actions/drag_to.md): The command to drag the current element to another element given its CSS selector.
- [drag\_to\_element](/element-commands/actions/drag_to_element.md): The command to drag the current element to the given element.
- [focus](/element-commands/actions/focus.md): The command to switch focus to the element.
- [hover](/element-commands/actions/hover.md): The command to hover the element.
- [right\_click](/element-commands/actions/right_click.md): The command to right-click the element.
- [scroll\_into\_view](/element-commands/actions/scroll_into_view.md): The command to scroll this element into the viewport
- [select\_by\_index](/element-commands/actions/select.md): The command to select an \<option> by its index within a \<select> dropdown element.
- [select\_by\_text](/element-commands/actions/select_many.md): The command to select an \<option> by its text within a \<select> dropdown element.
- [select\_by\_value](/element-commands/actions/select_many-1.md): The command to select an \<option> by its value within a \<select> dropdown element.
- [submit](/element-commands/actions/submit.md): The command to submit a form or input element.
- [type](/element-commands/actions/type.md): The command to type keys into a field, input or text box.
- [uncheck](/element-commands/actions/uncheck.md): The command to deselect checkboxes and radio buttons.
- [upload](/element-commands/actions/upload.md): The command to upload a file to the element.
- [Element Data](/element-commands/element-data.md): The commands to get details or data about the current element.
- [css\_value](/element-commands/element-data/css_value.md): Get the CSS Value of the element given the property name.
- [get\_attribute](/element-commands/element-data/get_attribute.md): The command to get the attribute's value with the given name.
- [get\_property](/element-commands/element-data/get_property.md): The command to get the specified property's value of the element.
- [tag\_name](/element-commands/element-data/tag_name.md): The command that gets the current Element's tag name.
- [text](/element-commands/element-data/text.md): The command to get the text of the current Element.
- [is\_checked](/element-commands/element-data/is_checked.md): The command to check if this element is checked.
- [is\_displayed](/element-commands/element-data/is_displayed.md): The command to check if this element is displayed.
- [is\_enabled](/element-commands/element-data/is_enabled.md): The command to check if the element is enabled.
- [is\_selected](/element-commands/element-data/is_selected.md): The command that checks if the element is selected.
- [Family](/element-commands/family.md): The commands that find or work with other elements close to the current element.
- [children](/element-commands/family/children.md): The command to get the children of the current element.
- [parent](/element-commands/family/parent.md): The command to get the parent of the current element.
- [siblings](/element-commands/family/siblings.md): The command to get the siblings of the current element.
- [open\_shadow\_dom](/element-commands/open_shadow_dom.md): The command to open/expand a Shadow DOM element.
- [screenshot](/element-commands/screenshot.md): The command to take a screenshot of the element.
- [webelement](/element-commands/webelement.md): The property that is the current instance of Selenium's WebElement that Element is wrapping.
