github.com/MontFerret/ferret@v0.18.0/examples/navigate_forward.fql (about) 1 LET origin = "https://github.com/" 2 LET target = "https://github.com/features" 3 LET doc = DOCUMENT(origin, { driver: "cdp" }) 4 5 NAVIGATE(doc, target) 6 NAVIGATE_BACK(doc) 7 NAVIGATE_FORWARD(doc) 8 9 RETURN doc.url == target