sleepUntilElement method
Implementation
Future<T> sleepUntilElement(
String selectors, {
Element? root,
int? timeoutMs,
int? intervalMs,
int? minMs,
Iterable<Element> Function(List<Element> elems)? mapper,
bool Function(List<Element> elems)? validator,
bool expected = false,
}) => thenChain(
(o) => o.sleepUntilElement(
selectors,
root: root,
timeoutMs: timeoutMs,
intervalMs: intervalMs,
mapper: mapper,
validator: validator,
minMs: minMs,
expected: expected,
),
);