1
0
mirror of https://github.com/MontFerret/ferret.git synced 2024-12-14 11:23:02 +02:00
ferret/examples/navigate_forward.fql
2018-10-12 16:30:17 -04:00

10 lines
201 B
Plaintext

LET origin = "https://github.com/"
LET target = "https://github.com/features"
LET doc = DOCUMENT(origin, true)
NAVIGATE(doc, target)
NAVIGATE_BACK(doc)
NAVIGATE_FORWARD(doc)
RETURN doc.url == target