summaryrefslogtreecommitdiff
path: root/Userland/Services/WebDriver
AgeCommit message (Expand)Author
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
2022-10-17WebDriver: Pass endpoint handler function parameters by const referenceLinus Groh
2022-10-17WebDriver: Put endpoint functions in spec orderLinus Groh
2022-10-17WebDriver: Include section number and title in spec commentsLinus Groh
2022-10-17WebDriver: Implement `POST /session/{id}/cookie` endpointTobias Christiansen
2022-10-17WebDriver: Implement `DELETE /session/{id}/cookie/{name}` endpointTobias Christiansen
2022-10-17WebDriver: Implement `DELETE /session/{id}/cookie` endpointTobias Christiansen
2022-10-16WebDriver: Implement `GET /session/{id}/cookie/{name}` endpointTobias Christiansen
2022-10-15WebDriver: Implement `GET /session/{id}/cookie` endpointTobias Christiansen
2022-10-15WebDriver: Implement POST /session/{id}/forward endpointMoustafa Raafat
2022-10-15WebDriver: Implement POST /session/{id}/back endpointMoustafa Raafat
2022-10-15WebDriver: Fix HTTP Status for 'no such window' errorTobias Christiansen
2022-10-15WebDriver: Implement `POST /session/{id}/refresh` endpointTobias Christiansen
2022-10-12WebDriver: Implement `GET /session/{id}/url` endpointSam Atkins
2022-10-12WebDriver: Implement `GET /status` endpointSam Atkins
2022-10-12WebDriver: Add new WebDriver serviceSam Atkins