github.com/MontFerret/ferret@v0.18.0/examples/navigate_back.fql (about)

     1  LET origin = "https://github.com/"
     2  LET doc = DOCUMENT(origin, { driver: "cdp" })
     3  
     4  NAVIGATE(doc, "https://github.com/features", 10000)
     5  NAVIGATE_BACK(doc)
     6  
     7  RETURN doc.url == origin