summaryrefslogtreecommitdiff
path: root/Userland/Services/WebDriver
AgeCommit message (Expand)Author
2022-11-05WebDriver+Browser: Implement `GET /session/{id}/element/{id}/screenshot`Timothy Flynn
2022-11-03WebDriver+Browser: Implement `GET /session/{id}/element/{id}/selected`Timothy Flynn
2022-11-03WebDriver: Pass StringView by valueTimothy Flynn
2022-11-03WebDriver: Consolidate getting a known connected element to a helperTimothy Flynn
2022-11-03WebDriver+Browser: Implement `GET /session/{id}/element/{id}/enabled`Timothy Flynn
2022-11-03WebDriver+Browser: Implement `GET /session/{id}/element/{id}/rect`Timothy Flynn
2022-11-03WebDriver: Rename serialize_window_rect to serialize_rectTimothy Flynn
2022-11-03WebDriver+Browser: Implement `GET /session/{id}/source`Timothy Flynn
2022-11-02WebDriver: Implement `POST /session/{session id}/execute/async` endpointLinus Groh
2022-11-02WebDriver: Implement `POST /session/{session id}/execute/sync` endpointLinus Groh
2022-11-02WebDriver: Support "data" field in error responsesLinus Groh
2022-11-02WebDriver+Browser: Implement `GET /session/{id}/screenshot`Timothy Flynn
2022-11-02WebContent: Support sending large responses to the WebDriver clientTimothy Flynn
2022-11-02WebDriver+Browser: Implement `POST /session/{id}/window/minimize`Timothy Flynn
2022-11-02WebDriver+Browser: Implement `POST /session/{id}/window/maximize`Timothy Flynn
2022-11-02WebDriver+Browser: Implement `POST /session/{id}/window/rect`Timothy Flynn
2022-11-02WebDriver+Browser: Implement `GET /session/{id}/window/rect`Timothy Flynn
2022-11-02WebDriver: Convert a couple tabs to spacesTimothy Flynn
2022-11-01Everywhere: Mark dependencies of most targets as PRIVATETim Schumacher
2022-11-01WebDriver: Implement `GET /session/{id}/element/{id}/text` endpointmartinfalisse
2022-10-24AK+Everywhere: Turn bool keep_empty to an enum in split* functionsdemostanis
2022-10-22WebDriver: Implement `GET /session/{id}/element/{id}/name` endpointTobias Christiansen
2022-10-21WebDriver: Extract repeated "check for window or return error" codeSam Atkins
2022-10-21WebDriver: Use WebDriverError::from_code() for all error creationSam Atkins
2022-10-21WebDriver: Introduce WebDriver::ErrorCode enumSam Atkins
2022-10-21WebDriver: Rename HttpError -> WebDriverErrorSam Atkins
2022-10-20WebDriver: Implement `GET /session/{id}/element/{id}/css/{name}`Tobias Christiansen
2022-10-19WebDriver: Fix old current_window styleTobias Christiansen
2022-10-19WebDriver: Implement `GET /session/{id}/element/{id}/property/{name}`Tobias Christiansen
2022-10-19WebDriver: Implement `GET /session/{session id}/window/handles` endpointLinus Groh
2022-10-19WebDriver: Fix Session::close_window() declaration orderLinus Groh
2022-10-19WebDriver: Rename Session::{get_window_object => current_window}()Linus Groh
2022-10-19WebDriver: Remove unused Session::get_window_handles()Linus Groh
2022-10-19WebDriver: Condense Client handler functions a bitLinus Groh
2022-10-19WebDriver: Move `GET /session/{session id}/window` impl into SessionLinus Groh
2022-10-19WebDriver: Implement `POST /session/{session id}/timeouts` endpointLinus Groh
2022-10-19WebDriver: Implement `GET /session/{session id}/timeouts` endpointLinus Groh
2022-10-19WebDriver: Use monotonic timer in Session::find()Linus Groh
2022-10-19WebDriver: Replace hardcoded timeout with a TimeoutsConfiguration structLinus Groh
2022-10-19WebDriver: Implement `GET /session/{id}/element/{id}/attribute/{name}`Tobias Christiansen
2022-10-19WebDriver: Implement `POST /session/{id}/element/{id}/elements`Tobias Christiansen
2022-10-19WebDriver: Implement `POST /session/{id}/element/{id}/element`Tobias Christiansen
2022-10-19WebDriver: Implement `POST /session/{id}/elements` endpointTobias Christiansen
2022-10-18WebDriver: Avoid some JsonValue copies in Session::find_element()Linus Groh
2022-10-18WebDriver: Include (empty) capabilities object in /session POST responseLinus Groh
2022-10-18WebDriver: Make functions always match their spec command nameLinus Groh
2022-10-18WebDriver: Add `GET /session/{id}/window` endpointLinus Groh
2022-10-18WebDriver: Rename Session::get_window() to current_window_handle()Linus Groh
2022-10-18WebDriver: Add `POST /session/{id}/element` endpointTobias Christiansen
2022-10-17WebDriver: Replace `Session* session = ...` with `auto* session = ...`Linus Groh