github.com/MontFerret/ferret@v0.18.0/e2e/tests/dynamic/doc/inner_html/get_by_css_all.fql (about)

     1  LET url = @lab.cdn.dynamic
     2  LET doc = DOCUMENT(url, true)
     3  
     4  WAIT_ELEMENT(doc, "#layout")
     5  
     6  LET expected = [
     7  '<h1>Welcome to Ferret E2E test page!</h1>',
     8  '<p class="lead">It has several pages for testing different possibilities of the library</p>'
     9  ]
    10  LET actual = INNER_HTML_ALL(doc, '#root > div > main > div > *')
    11  
    12  RETURN T::EQ(actual, expected)