Linus Groh
5c32eacac9
WebDriver: Implement GET /session/{session id}/timeouts
endpoint
2022-10-19 21:11:37 +02:00
Linus Groh
4db5f6d081
WebDriver: Use monotonic timer in Session::find()
2022-10-19 21:11:37 +02:00
Linus Groh
f0a8e3bc05
WebDriver: Replace hardcoded timeout with a TimeoutsConfiguration struct
2022-10-19 21:11:37 +02:00
Tobias Christiansen
249350a7a3
WebDriver: Implement GET /session/{id}/element/{id}/attribute/{name}
2022-10-19 17:30:58 +02:00
Tobias Christiansen
e1fb64abad
WebDriver: Implement POST /session/{id}/element/{id}/elements
2022-10-19 15:32:31 +02:00
Tobias Christiansen
d26bbcab42
WebDriver: Implement POST /session/{id}/element/{id}/element
2022-10-19 15:32:31 +02:00
Tobias Christiansen
063bd663a7
WebDriver: Implement POST /session/{id}/elements
endpoint
2022-10-19 15:32:31 +02:00
Linus Groh
8fc4c5d27b
WebDriver: Avoid some JsonValue copies in Session::find_element()
2022-10-18 23:22:38 +02:00
Linus Groh
f3d66b1108
WebDriver: Include (empty) capabilities object in /session POST response
...
Still not spec compliant, but at least we now return both assumed values
of the JSON object ("sessionId", "capabilities").
2022-10-18 23:22:38 +02:00
Linus Groh
dd4e5d5028
WebDriver: Make functions always match their spec command name
...
This is easier to grasp than sometimes naming it after the HTTP method,
and sometimes not.
2022-10-18 23:22:38 +02:00
Linus Groh
47f25d4008
WebDriver: Add GET /session/{id}/window
endpoint
2022-10-18 23:22:38 +02:00
Linus Groh
f2435a6237
WebDriver: Rename Session::get_window() to current_window_handle()
...
Pure getters should always match their member name. Also return a const
reference and let the caller make a copy if needed.
2022-10-18 23:22:38 +02:00
Tobias Christiansen
5fcf00f30d
WebDriver: Add POST /session/{id}/element
endpoint
...
This allows you to query for elements in the active document!
The IDs of matching elements are returned through the WebDriver
interface, for now there's nothing to do with this information.
This introduces a `LocalElement` to the Session, which for now only
holds the ID of a real browser-side element. Once more data of elements
are available to the Session, they can be stored alongside in this
struct.
Fixme's introduced are:
- Only CSS selector location strategy is implemented for now
- `get_or_create_a_web_element_reference` returns the elements ID
instead of a UUID generated in a spec way.
2022-10-18 19:18:33 +02:00
Linus Groh
8b5b42f667
WebDriver: Replace Session* session = ...
with auto* session = ...
2022-10-17 18:20:05 +02:00
Linus Groh
324eb98bb9
WebDriver: Pass endpoint handler function parameters by const reference
2022-10-17 18:20:05 +02:00
Linus Groh
727e982c50
WebDriver: Put endpoint functions in spec order
2022-10-17 18:20:05 +02:00
Linus Groh
eafb924580
WebDriver: Include section number and title in spec comments
...
Also, only add the HTTP method and path to the Client side where they
are relevant for seeing which parameters are available and such.
2022-10-17 18:20:05 +02:00
Tobias Christiansen
122e2d2076
WebDriver: Implement POST /session/{id}/cookie
endpoint
...
This allows the WebDriver to create a cookie.
We use a Web::Cookie::ParsedCookie to transport the data through IPC
to take advantage of the RFC6265 Section 5.3 implementation in the
CookieJar.
2022-10-17 15:48:22 +02:00
Tobias Christiansen
fefe447cf5
WebDriver: Implement DELETE /session/{id}/cookie/{name}
endpoint
2022-10-17 11:31:30 +02:00
Tobias Christiansen
0d6dc2492d
WebDriver: Implement DELETE /session/{id}/cookie
endpoint
2022-10-17 11:31:30 +02:00
Tobias Christiansen
a34f8c444b
WebDriver: Implement GET /session/{id}/cookie/{name}
endpoint
2022-10-16 16:32:59 +02:00
Tobias Christiansen
001699f2d6
WebDriver: Implement GET /session/{id}/cookie
endpoint
2022-10-15 22:28:34 +02:00
Moustafa Raafat
a4fa604bde
WebDriver: Implement POST /session/{id}/forward endpoint
2022-10-15 21:01:59 +02:00
Moustafa Raafat
9132656856
WebDriver: Implement POST /session/{id}/back endpoint
2022-10-15 21:01:59 +02:00
Tobias Christiansen
a33cad1197
WebDriver: Fix HTTP Status for 'no such window' error
...
The 'no such window' error returns a 404, not a 400.
2022-10-15 15:43:42 +01:00
Tobias Christiansen
1179d951f6
WebDriver: Implement POST /session/{id}/refresh
endpoint
2022-10-15 15:43:42 +01:00
Sam Atkins
096fe865c6
WebDriver: Implement GET /session/{id}/url
endpoint
2022-10-12 23:07:42 +02:00
Sam Atkins
a15d32982a
WebDriver: Implement GET /status
endpoint
2022-10-12 23:07:42 +02:00
Sam Atkins
80603f141a
WebDriver: Add new WebDriver service
...
WebDriver aims to implement the WebDriver specification found at
https://w3c.github.io/webdriver/webdriver-spec.html . It's an HTTP
server that can create Browser sessions and control them.
Co-authored-by: Florent Castelli <florent.castelli@gmail.com>
2022-10-12 23:07:42 +02:00