mirror of
https://github.com/MontFerret/ferret.git
synced 2024-12-14 11:23:02 +02:00
14 lines
363 B
Plaintext
14 lines
363 B
Plaintext
LET url = @dynamic
|
|
LET doc = DOCUMENT(url, true)
|
|
LET el = ELEMENT(doc, ".jumbotron")
|
|
|
|
LET expected = `
|
|
Welcome to Ferret E2E test page!
|
|
It has several pages for testing different possibilities of the library
|
|
`
|
|
LET actual = INNER_TEXT(el)
|
|
|
|
LET r1 = '(\n|\s)'
|
|
LET r2 = '(\n|\s)'
|
|
|
|
RETURN EXPECT(REGEXP_REPLACE(expected, r1, ''), REGEXP_REPLACE(TRIM(actual), r2, '')) |