1
0
mirror of https://github.com/MontFerret/ferret.git synced 2025-01-24 03:49:29 +02:00
ferret/examples/click.fql

9 lines
180 B
Plaintext
Raw Normal View History

LET doc = DOCUMENT("https://www.montferret.dev/", { driver: "cdp" })
CLICK(doc, "#repl")
2019-08-22 17:51:49 -04:00
WAITFOR EVENT "navigation" IN doc
WAIT_ELEMENT(doc, '.code-editor-text')
2018-09-25 17:58:57 -04:00
RETURN doc.url