1
0
mirror of https://github.com/MontFerret/ferret.git synced 2025-03-05 15:16:07 +02:00
ferret/examples/navigate_back.fql

8 lines
186 B
Plaintext
Raw Normal View History

LET origin = "https://github.com/"
2019-07-23 14:55:26 -04:00
LET doc = DOCUMENT(origin, { driver: "cdp" })
NAVIGATE(doc, "https://github.com/features", 10000)
NAVIGATE_BACK(doc, 10000)
RETURN doc.url == origin