mirror of
https://github.com/MontFerret/ferret.git
synced 2024-12-16 11:37:36 +02:00
9b762d32ee
* Added default headers and cookies * wip * Added tests * Added default headers and cookies to HTTP driver * Removed unused struct prop
21 lines
436 B
Plaintext
21 lines
436 B
Plaintext
LET url = @static + "/api/ts"
|
|
LET page = DOCUMENT(url, {
|
|
driver: "cdp_cookies"
|
|
})
|
|
|
|
LET el = ELEMENT(page, "#cookies")
|
|
LET actual = (
|
|
FOR c IN JSON_PARSE(el.innerText)
|
|
SORT c.Name
|
|
RETURN c
|
|
)
|
|
|
|
LET expected = {
|
|
"Single_cookie": "single_cookie_value",
|
|
"Multi_set_cookie": "multi_set_cookie_value",
|
|
}
|
|
|
|
RETURN EXPECT(expected, {
|
|
"Single_cookie": actual[2].Value,
|
|
"Multi_set_cookie": actual[0].Value,
|
|
}) |