waitFor method
Implementation
Future<Online> waitFor(AbstractSelector waitable, {Duration? timeout}) async {
await (await page).waitForSelector(waitable.selector,
timeout: timeout ?? default_timeout);
return this;
}
Future<Online> waitFor(AbstractSelector waitable, {Duration? timeout}) async {
await (await page).waitForSelector(waitable.selector,
timeout: timeout ?? default_timeout);
return this;
}