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

LibWeb+WebContent+WebDriver: Implement Accept Alert

This commit is contained in:
Timothy Flynn 2022-11-16 07:24:22 -05:00 committed by Linus Groh
parent 7cf2feb047
commit 3e7d633954
9 changed files with 45 additions and 0 deletions

View file

@ -88,6 +88,7 @@ public:
// 16. User prompts, https://w3c.github.io/webdriver/#user-prompts
virtual Response dismiss_alert(Parameters parameters, JsonValue payload) = 0;
virtual Response accept_alert(Parameters parameters, JsonValue payload) = 0;
// 17. Screen capture, https://w3c.github.io/webdriver/#screen-capture
virtual Response take_screenshot(Parameters parameters, JsonValue payload) = 0;