mirror of
https://github.com/MontFerret/ferret.git
synced 2024-12-16 11:37:36 +02:00
347bae2e45
* Added SetInnerHTML method * Added E2E tests * Refactored GetInnerText* methods * Updated e2e tests * Moved related E2E tests to folders * Added error message * Added E2E tests * Added E2E for static driver
17 lines
365 B
Plaintext
17 lines
365 B
Plaintext
LET url = @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 EXPECT(REGEXP_REPLACE(expected, r1, ''), REGEXP_REPLACE(TRIM(actual), r2, '')) |