mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 22:37:35 +00:00
LibWeb+WebContent+WebDriver: Implement Get Active Element
Unfortunately, nothing ever calls DOM::Document::set_active_element at the moment, so this will always return ErrorCode::NoSuchElement.
This commit is contained in:
parent
269a931414
commit
cb91e6067c
7 changed files with 33 additions and 0 deletions
|
@ -61,6 +61,7 @@ public:
|
|||
virtual Response find_elements(Parameters parameters, JsonValue payload) = 0;
|
||||
virtual Response find_element_from_element(Parameters parameters, JsonValue payload) = 0;
|
||||
virtual Response find_elements_from_element(Parameters parameters, JsonValue payload) = 0;
|
||||
virtual Response get_active_element(Parameters parameters, JsonValue payload) = 0;
|
||||
virtual Response is_element_selected(Parameters parameters, JsonValue payload) = 0;
|
||||
virtual Response get_element_attribute(Parameters parameters, JsonValue payload) = 0;
|
||||
virtual Response get_element_property(Parameters parameters, JsonValue payload) = 0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue