mirror of
https://github.com/MontFerret/ferret.git
synced 2024-12-14 11:23:02 +02:00
71c246dd17
* Added KeepCookies option to CDP driver * Added LoadDocumentParams * Added COOKIE_GET and COOKIE_SET methods
21 lines
437 B
Plaintext
21 lines
437 B
Plaintext
LET url = @dynamic
|
|
LET doc = DOCUMENT(url, {
|
|
driver: "cdp",
|
|
cookies: [{
|
|
name: "x-e2e",
|
|
value: "test"
|
|
}, {
|
|
name: "x-e2e-2",
|
|
value: "test2"
|
|
}]
|
|
})
|
|
|
|
COOKIE_DEL(doc, COOKIE_GET(doc, "x-e2e"), "x-e2e-2")
|
|
|
|
LET cookie1 = COOKIE_GET(doc, "x-e2e")
|
|
LET cookie2 = COOKIE_GET(doc, "x-e2e-2")
|
|
|
|
LET expected = "nonenone"
|
|
LET actual = TYPENAME(cookie1) + TYPENAME(cookie2)
|
|
|
|
RETURN EXPECT(expected, actual) |