mirror of
https://github.com/MontFerret/ferret.git
synced 2024-12-16 11:37:36 +02:00
dca7267e82
* 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
14 lines
385 B
Plaintext
14 lines
385 B
Plaintext
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(REGEX_REPLACE(TRIM(actual), r2, ''), REGEX_REPLACE(expected, r1, '')) |