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

ParameterTypeRemarks
targetstringText or element to find
nnumberNumber 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.

Last Updated: