mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-29 20:29:18 +00:00
LibWeb+WebContent+WebDriver: Implement Get Alert Text
This commit is contained in:
parent
3e7d633954
commit
f9b8742fff
Notes:
sideshowbarker
2024-07-17 07:11:12 +09:00
Author: https://github.com/trflynn89
Commit: f9b8742fff
Pull-request: https://github.com/SerenityOS/serenity/pull/16091
Reviewed-by: https://github.com/linusg
9 changed files with 47 additions and 0 deletions
|
@ -95,6 +95,7 @@ static constexpr auto s_webdriver_endpoints = Array {
|
|||
ROUTE(DELETE, "/session/:session_id/cookie"sv, delete_all_cookies),
|
||||
ROUTE(POST, "/session/:session_id/alert/dismiss"sv, dismiss_alert),
|
||||
ROUTE(POST, "/session/:session_id/alert/accept"sv, accept_alert),
|
||||
ROUTE(GET, "/session/:session_id/alert/text"sv, get_alert_text),
|
||||
ROUTE(GET, "/session/:session_id/screenshot"sv, take_screenshot),
|
||||
ROUTE(GET, "/session/:session_id/element/:element_id/screenshot"sv, take_element_screenshot),
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue