I count Command
I.count
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.
Usage
I.count(target, n)
Parameters
Parameter | Type | Remarks |
---|---|---|
target | string | Text or element to find |
n | number | Number of occurance expected |
Example(s)
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.