LazyLoadConfig.aggressive constructor

LazyLoadConfig.aggressive()

Creates a LazyLoadConfig for aggressive lazy loading

Implementation

factory LazyLoadConfig.aggressive() {
  return const LazyLoadConfig(
    handleLazyLoading: true,
    useHeadlessBrowser: true,
    maxScrollDepth: 20,
    scrollStepSize: 0.5,
    scrollDelayMs: 300,
    maxWaitTimeMs: 60000,
    clickLoadMoreButtons: true,
    waitForNetworkIdle: true,
    waitForDomContentLoaded: true,
  );
}