1
0
mirror of https://github.com/MontFerret/ferret.git synced 2024-12-16 11:37:36 +02:00
ferret/e2e/tests/dynamic/page/cookies/load_with.fql

15 lines
244 B
Plaintext
Raw Normal View History

LET url = @lab.cdn.dynamic
LET doc = DOCUMENT(url, {
driver: "cdp",
cookies: [{
name: "x-e2e",
value: "test"
}]
})
LET cookie = COOKIE_GET(doc, "x-e2e")
T::NOT::NONE(cookie)
T::EQ(cookie.value, "test")
RETURN NONE