Function: checkLivenessAll()
function checkLivenessAll(
probe,
selectors,
options): Promise<ProbeResult[]>;
Defined in: packages/uimatch-selector-anchors/src/utils/liveness.ts:46
Check liveness for all selectors and return results
Performs parallel checks to minimize total wait time. Uses allSettled pattern to ensure one failure doesn't block other checks.
Parameters
probe
Probe instance for liveness checking
selectors
string[]
Selectors to check
options
ProbeOptions = {}
Check options
Returns
Promise<ProbeResult[]>
Array of liveness results (failed checks return isValid:false)