interact static method
Future<InteractionResult>
interact(
- CrawlEngineHandle engine,
- String url,
- List<
PageAction> actions
Execute browser actions on a single page. throws CrawlError on failure
Implementation
static Future<InteractionResult> interact(CrawlEngineHandle engine, String url, List<PageAction> actions) async {
return await rust_bridge.interact(engine: engine, url: url, actions: actions);
}