scan method
Implementation
Future<Online> scan(
AbstractSelector selector,
dynamic Function(ElementHandle) action, {
bool show = true,
}) async {
var Online = await this;
return Online.scan(
selector,
action,
show: show,
);
}