1
0
mirror of https://github.com/MontFerret/ferret.git synced 2024-12-16 11:37:36 +02:00
ferret/e2e/tests/dynamic/doc/inner_text/get.fql

17 lines
365 B
Plaintext
Raw Normal View History

2018-11-22 05:45:00 +02:00
LET url = @dynamic
LET doc = DOCUMENT(url, true)
LET expected = `Ferret
2018-11-22 05:45:00 +02:00
Forms
Navigation
Events
iFrame
2018-11-22 05:45:00 +02:00
Welcome to Ferret E2E test page!
It has several pages for testing different possibilities of the library
`
LET actual = INNER_TEXT(doc)
LET r1 = '(\n|\s)'
LET r2 = '(\n|\s)'
RETURN EXPECT(REGEXP_REPLACE(expected, r1, ''), REGEXP_REPLACE(TRIM(actual), r2, ''))