1
0
mirror of https://github.com/MontFerret/ferret.git synced 2024-12-16 11:37:36 +02:00
ferret/e2e/tests/doc_inner_text.fql

7 lines
353 B
Plaintext
Raw Normal View History

2018-11-12 21:53:36 +02:00
LET url = @static + '/overview.html'
2018-10-14 21:38:14 +02:00
LET doc = DOCUMENT(url)
LET expected = "Components and options for laying out your Bootstrap project, including wrapping containers, a powerful grid system, a flexible media object, and responsive utility classes."
LET actual = INNER_TEXT(doc, 'body > div > div > main > p.bd-lead')
RETURN EXPECT(expected, actual)