mirror of
https://github.com/MontFerret/ferret.git
synced 2024-12-14 11:23:02 +02:00
10 lines
201 B
Plaintext
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
|