Documentation

querySelect()

Returns all (nested) elements for which the provided callback returns true.

querySelect(
f: (elt: TestOutputElement) => boolean | undefined,
): TestOutputElement[];

Parameters

Return value

A list of all elements for which the callback returned a true value.

Related