1
0
mirror of https://github.com/MontFerret/ferret.git synced 2025-01-10 03:16:58 +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 23:51:49 +02:00
WAITFOR EVENT "navigation" IN doc
WAIT_ELEMENT(doc, '.code-editor-text')
2018-09-25 23:58:57 +02:00
RETURN doc.url