1
0
mirror of https://github.com/MontFerret/ferret.git synced 2025-03-05 15:16:07 +02:00

14 lines
387 B
Plaintext
Raw Normal View History

LET url = @lab.cdn.dynamic
LET doc = DOCUMENT(url, true)
LET el = ELEMENT(doc, "#index")
LET expected = "<span>This node was injected by Ferret</span>"
INNER_HTML_SET(el, "<span>This node was injected by Ferret</span>")
LET actual = INNER_HTML(el)
WAIT(100)
LET r1 = '(\s|\")'
LET r2 = '(\n|\s|\")'
RETURN T::EQ(REGEXP_REPLACE(TRIM(actual), r2, ''), REGEXP_REPLACE(expected, r1, ''))