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

8 lines
161 B
Plaintext
Raw Normal View History

LET doc = DOCUMENT(@lab.cdn.dynamic + "/#/lists", { driver:"cdp" })
LET list = ELEMENT(doc, ".track-list")
T::EQ(list.length, 20)
T::LEN(list, 20)
RETURN NONE