1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 22:37:36 +00:00

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

This commit is contained in:
martinfalisse 2022-11-01 10:12:50 +01:00 committed by Linus Groh
parent 5ffff09e05
commit 76da0c6c54
7 changed files with 49 additions and 0 deletions

View file

@ -22,6 +22,7 @@ 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_text(i32 element_id) => (String text)
get_element_tag_name(i32 element_id) => (String tag_name)
}