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
Tim Voronov dca7267e82
Chore/actions (#568)
* Renamed REGEXP_REPLACE to REGEX_REPLACE in e2e tests

* Updated example test suites

* Fixed config file

* Updated go.sum

* Switched back to ubuntu

* Added release action
2020-11-10 21:13:29 -05:00

17 lines
370 B
Plaintext

LET url = @lab.cdn.dynamic
LET doc = DOCUMENT(url, true)
LET expected = `Ferret
Forms
Navigation
Events
iFrame
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 T::EQ(REGEX_REPLACE(TRIM(actual), r2, ''), REGEX_REPLACE(expected, r1, ''))