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

WebDriver: Implement GET /session/{id}/element/{id}/name endpoint

This commit is contained in:
Tobias Christiansen 2022-10-20 22:40:32 +02:00 committed by Linus Groh
parent be6bbdaa3b
commit a534e61b44
7 changed files with 50 additions and 0 deletions

View file

@ -22,5 +22,6 @@ endpoint WebDriverSessionClient {
get_element_property(i32 element_id, String name) => (Optional<String> property)
get_active_documents_type() => (String type)
get_computed_value_for_element(i32 element_id, String property_name) => (String computed_value)
get_element_tag_name(i32 element_id) => (String tag_name)
}