mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 06:48:12 +00:00
LibWeb+LibWebView+WebContent+WebDriver: Implement Send Alert Text
This commit is contained in:
parent
f9b8742fff
commit
f7bb835d09
13 changed files with 70 additions and 0 deletions
|
@ -96,6 +96,7 @@ static constexpr auto s_webdriver_endpoints = Array {
|
|||
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(POST, "/session/:session_id/alert/text"sv, send_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