description |
---|
Learn how to use the I.count command to count the number of occurances of texts in your UIlicious test. |
Assert the number of occurances for a text or element
Aliases: I.seeCount
Ignores casing and white-spaces. This behavior is not configurable at the moment.
I.count(target, n)
Parameters
Parameter | Type | Remarks |
---|---|---|
target | string | Text or element to find |
n | number | Number of occurance expected |
I.count("Add to cart", 20);
Asserts that there's 20 occurances of the text "Add to cart".
I.count(".product", 20);
Asserts that there's 20 occurances of the element with the "product" CSS class.