1
0
mirror of https://github.com/MontFerret/ferret.git synced 2025-01-04 03:02:02 +02:00
ferret/examples/value.fql

4 lines
188 B
Plaintext
Raw Normal View History

2019-07-23 20:55:26 +02:00
LET doc = DOCUMENT("https://www.yandex.com/search/?text=foobar", { driver: "cdp" })
2018-09-27 23:19:55 +02:00
LET input = ELEMENT(doc, 'input[type="search"]')
RETURN input.value ? input.value : 'value not defined'