interact static method

Future<InteractionResult> interact(
  1. CrawlEngineHandle engine,
  2. String url,
  3. 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);
}