fill_action method
Implementation
@override
Future<Online> fill_action(Online browser, dynamic value) async {
var count = 0;
do {
await before?.call(browser);
await doit(browser);
await after?.call(browser);
await Future.delayed(delay ?? Duration(seconds: 1));
count++;
} while (!(await check(browser)) && count < retry);
return browser;
}