1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 07:17:35 +00:00

LibWeb+WebContent+WebDriver: Implement Get Element Shadow Root

This commit is contained in:
Timothy Flynn 2022-11-14 19:27:11 -05:00 committed by Linus Groh
parent cb91e6067c
commit 4d9fd5d190
7 changed files with 70 additions and 0 deletions

View file

@ -24,6 +24,7 @@ endpoint WebDriverClient {
find_element_from_element(JsonValue payload, String element_id) => (Web::WebDriver::Response response)
find_elements_from_element(JsonValue payload, String element_id) => (Web::WebDriver::Response response)
get_active_element() => (Web::WebDriver::Response response)
get_element_shadow_root(String element_id) => (Web::WebDriver::Response response)
is_element_selected(String element_id) => (Web::WebDriver::Response response)
get_element_attribute(String element_id, String name) => (Web::WebDriver::Response response)
get_element_property(String element_id, String name) => (Web::WebDriver::Response response)