1
0
mirror of https://github.com/MontFerret/ferret.git synced 2025-02-01 13:07:49 +02:00
ferret/examples/redirects.fql

15 lines
215 B
Plaintext
Raw Normal View History

LET doc = DOCUMENT(@url, {
driver: 'cdp',
viewport: {
width: 1920,
height: 1080
}
})
CLICK(doc, '.click')
2019-12-24 18:51:59 -05:00
WAIT_NAVIGATION(doc, {
target: @targetURL
2019-12-24 18:51:59 -05:00
})
RETURN ELEMENT(doc, '.title')