selectFirstWhereUntil method
Alias to sleepUntilElement + querySelectorAll + firstWhereOrNull.
Implementation
Future<UITestChainNode<U, Element, T>> selectFirstWhereUntil(
String? selectors,
bool Function(Element element) test, {
int? timeoutMs,
int? intervalMs,
int? minMs,
Iterable<Element> Function(List<Element> elems)? mapper,
}) =>
sleepUntilElement(
selectors ?? '*',
timeoutMs: timeoutMs,
intervalMs: intervalMs,
minMs: minMs,
mapper: mapper,
validator: (elems) => elems.any(test),
).selectFirstWhere(selectors, test).thenChain((o) {
var elem = o.element;
if (elem == null) {
var sel = selectAll(
selectors,
).element.map((e) => e.simplify()).toList();
expect(
elem,
pkg_test.isNotNull,
reason: "Can't find selected element: $selectors -> $sel",
);
}
return UITestChainNode<U, Element, T>(
o.testChainRoot as UITestChainRoot<U>,
elem!,
this as T,
);
});