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
Tim Voronov 526916efb6
Bugfix/#575 element children (#580)
* Fixed retreival of child elements

* Fixed formatting

* Set tree depth to 0

* Removed redundant code
2020-12-19 13:42:57 -05:00

8 lines
161 B
Plaintext

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