LibWeb+WebDriver+WebContent: Implement the Element Click endpoint

This commit is contained in:
Timothy Flynn 2024-10-01 16:07:58 -04:00 committed by Tim Ledbetter
commit 5aa50bff8b
Notes: github-actions[bot] 2024-10-06 00:43:52 +00:00
8 changed files with 146 additions and 26 deletions

View file

@ -128,5 +128,6 @@ ErrorOr<Vector<Vector<ActionObject>>, WebDriver::Error> extract_an_action_sequen
JS::NonnullGCPtr<JS::Cell> dispatch_actions(InputState&, Vector<Vector<ActionObject>>, HTML::BrowsingContext&, ActionsOptions, OnActionsComplete);
ErrorOr<void, WebDriver::Error> dispatch_tick_actions(InputState&, ReadonlySpan<ActionObject>, AK::Duration, HTML::BrowsingContext&, ActionsOptions const&);
JS::NonnullGCPtr<JS::Cell> dispatch_list_of_actions(InputState&, Vector<ActionObject>, HTML::BrowsingContext&, ActionsOptions, OnActionsComplete);
}