1
0
mirror of https://github.com/MontFerret/ferret.git synced 2024-12-18 23:47:48 +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-25 01:51:59 +02:00
WAIT_NAVIGATION(doc, {
target: @targetURL
2019-12-25 01:51:59 +02:00
})
RETURN ELEMENT(doc, '.title')