mirror of
https://github.com/MontFerret/ferret.git
synced 2024-12-16 11:37:36 +02:00
11bf8c365a
* Fixed headers * Added e2e for static pages
10 lines
249 B
Plaintext
10 lines
249 B
Plaintext
LET url = @dynamic
|
|
LET doc = DOCUMENT(url, {
|
|
driver: "cdp"
|
|
})
|
|
|
|
LET cookiesPath = LENGTH(doc.cookies) > 0 ? "ok" : "false"
|
|
LET cookie = COOKIE_GET(doc, "x-ferret")
|
|
LET expected = "ok e2e"
|
|
|
|
RETURN EXPECT(expected, cookiesPath + " " + cookie.value) |