Actions with a element click – click on the element meta_click – focus, move the mouse to the element at random coordinates, and click event – send an event to the element check – check the element focus – set the input focus on the element scroll_to_view – scroll the page so that the element is visible (via java script) ensure_visible – scroll the page so that the element is visible (through scrolling) scroll – scroll the element screenshot – take a screenshot of the element
is_disabled – check the availability of a element is_checked – check whether the element is checked is_visibled – check the visibility of the element on the page is_view_now – check that the element falls in the visible area of the page is_exist – check for an element on the page
mouse_move – full emulation of moving the mouse to the element mouse_move_to – full emulation of moving the mouse to the element along the specified path mouse_click – full emulation of a mouse click on an element mouse_double_click – full emulation of a double-click on an element mouse_left_down – full emulation of left-click on an element mouse_left_up – full emulation of pressing the left mouse button on an element mouse_right_click – full emulation of a right-click on an element mouse_right_down – full emulation of right-clicking on an element mouse_right_up – full emulation of pressing the right mouse button on an element
Mouse emulation at the event level above a element
Keyboard emulation at the event level above a element
send_input – emulation of string input events in a element send_key – emulation of keyboard input events in a element send_key_down – emulates a keystroke event on a element send_key_up – emulates the key release event on a element
Auxiliary
__destruct – destroy the interface (free up the memory it occupies) get_clone – get a clone of the DOM interface
Working with the DOM tree structure
add_child – add a child element to the element insert_before – add a child element to the element remove – remove a element get_parent – get the parent DOM interface get_parent_by_attribute – get the parent DOM interface by its attribute value get_next – get the following DOM interface get_prev – get the previous DOM interface get_child_count – get the number of child DOM interfaces get_shadow_root – get the Shadow Root element interface