mirror of
https://github.com/MontFerret/ferret.git
synced 2024-12-16 11:37:36 +02:00
6 lines
152 B
Plaintext
6 lines
152 B
Plaintext
|
LET url = @static + '/value.html'
|
||
|
LET page = DOCUMENT(url)
|
||
|
|
||
|
LET actual = XPATH(page, "//tr[contains(@class, 'odd')]")
|
||
|
|
||
|
RETURN EXPECT(20, LENGTH(actual))
|