@crawlee/playwright 4.0.0-beta.7 → 4.0.0-beta.71
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +17 -13
- package/internals/adaptive-playwright-crawler.d.ts +67 -57
- package/internals/adaptive-playwright-crawler.d.ts.map +1 -1
- package/internals/adaptive-playwright-crawler.js +298 -205
- package/internals/adaptive-playwright-crawler.js.map +1 -1
- package/internals/enqueue-links/click-elements.d.ts +32 -13
- package/internals/enqueue-links/click-elements.d.ts.map +1 -1
- package/internals/enqueue-links/click-elements.js +45 -21
- package/internals/enqueue-links/click-elements.js.map +1 -1
- package/internals/playwright-crawler.d.ts +91 -73
- package/internals/playwright-crawler.d.ts.map +1 -1
- package/internals/playwright-crawler.js +82 -19
- package/internals/playwright-crawler.js.map +1 -1
- package/internals/playwright-launcher.d.ts +2 -0
- package/internals/playwright-launcher.d.ts.map +1 -1
- package/internals/playwright-launcher.js +1 -1
- package/internals/playwright-launcher.js.map +1 -1
- package/internals/utils/playwright-utils.d.ts +30 -15
- package/internals/utils/playwright-utils.d.ts.map +1 -1
- package/internals/utils/playwright-utils.js +70 -66
- package/internals/utils/playwright-utils.js.map +1 -1
- package/internals/utils/rendering-type-prediction.d.ts +9 -5
- package/internals/utils/rendering-type-prediction.d.ts.map +1 -1
- package/internals/utils/rendering-type-prediction.js +58 -23
- package/internals/utils/rendering-type-prediction.js.map +1 -1
- package/package.json +14 -10
- package/tsconfig.build.tsbuildinfo +0 -1
package/README.md
CHANGED
|
@@ -1,19 +1,23 @@
|
|
|
1
1
|
<h1 align="center">
|
|
2
2
|
<a href="https://crawlee.dev">
|
|
3
3
|
<picture>
|
|
4
|
-
<source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/apify/crawlee/master/website/static/img/crawlee-dark.svg?sanitize=true"
|
|
5
|
-
<img alt="Crawlee" src="https://raw.githubusercontent.com/apify/crawlee/master/website/static/img/crawlee-light.svg?sanitize=true" width="500"
|
|
4
|
+
<source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/apify/crawlee/master/website/static/img/crawlee-dark.svg?sanitize=true" />
|
|
5
|
+
<img alt="Crawlee" src="https://raw.githubusercontent.com/apify/crawlee/master/website/static/img/crawlee-light.svg?sanitize=true" width="500" />
|
|
6
6
|
</picture>
|
|
7
7
|
</a>
|
|
8
|
-
<br
|
|
8
|
+
<br />
|
|
9
9
|
<small>A web scraping and browser automation library</small>
|
|
10
10
|
</h1>
|
|
11
11
|
|
|
12
|
-
<p align=center>
|
|
13
|
-
<a href="https://
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
12
|
+
<p align="center">
|
|
13
|
+
<a href="https://trendshift.io/repositories/5179" target="_blank"><img src="https://trendshift.io/api/badge/repositories/5179" alt="apify%2Fcrawlee | Trendshift" width="250" height="55"/></a>
|
|
14
|
+
</p>
|
|
15
|
+
|
|
16
|
+
<p align="center">
|
|
17
|
+
<a href="https://www.npmjs.com/package/@crawlee/core" rel="nofollow"><img src="https://img.shields.io/npm/v/@crawlee/core.svg" alt="NPM latest version" data-canonical-src="https://img.shields.io/npm/v/@crawlee/core/next.svg" /></a>
|
|
18
|
+
<a href="https://www.npmjs.com/package/@crawlee/core" rel="nofollow"><img src="https://img.shields.io/npm/dm/@crawlee/core.svg" alt="Downloads" data-canonical-src="https://img.shields.io/npm/dm/@crawlee/core.svg" /></a>
|
|
19
|
+
<a href="https://discord.gg/jyEM2PRvMU" rel="nofollow"><img src="https://img.shields.io/discord/801163717915574323?label=discord" alt="Chat on discord" data-canonical-src="https://img.shields.io/discord/801163717915574323?label=discord" /></a>
|
|
20
|
+
<a href="https://github.com/apify/crawlee/actions/workflows/test-ci.yml"><img src="https://github.com/apify/crawlee/actions/workflows/test-ci.yml/badge.svg?branch=master" alt="Build Status" /></a>
|
|
17
21
|
</p>
|
|
18
22
|
|
|
19
23
|
Crawlee covers your crawling and scraping end-to-end and **helps you build reliable scrapers. Fast.**
|
|
@@ -24,7 +28,7 @@ Crawlee is available as the [`crawlee`](https://www.npmjs.com/package/crawlee) N
|
|
|
24
28
|
|
|
25
29
|
> 👉 **View full documentation, guides and examples on the [Crawlee project website](https://crawlee.dev)** 👈
|
|
26
30
|
|
|
27
|
-
>
|
|
31
|
+
> Do you prefer 🐍 Python instead of JavaScript? [👉 Checkout Crawlee for Python 👈](https://github.com/apify/crawlee-python).
|
|
28
32
|
|
|
29
33
|
## Installation
|
|
30
34
|
|
|
@@ -85,7 +89,7 @@ By default, Crawlee stores data to `./storage` in the current working directory.
|
|
|
85
89
|
We provide automated beta builds for every merged code change in Crawlee. You can find them in the npm [list of releases](https://www.npmjs.com/package/crawlee?activeTab=versions). If you want to test new features or bug fixes before we release them, feel free to install a beta build like this:
|
|
86
90
|
|
|
87
91
|
```bash
|
|
88
|
-
npm install crawlee@
|
|
92
|
+
npm install crawlee@next
|
|
89
93
|
```
|
|
90
94
|
|
|
91
95
|
If you also use the [Apify SDK](https://github.com/apify/apify-sdk-js), you need to specify dependency overrides in your `package.json` file so that you don't end up with multiple versions of Crawlee installed:
|
|
@@ -94,9 +98,9 @@ If you also use the [Apify SDK](https://github.com/apify/apify-sdk-js), you need
|
|
|
94
98
|
{
|
|
95
99
|
"overrides": {
|
|
96
100
|
"apify": {
|
|
97
|
-
"@crawlee/core": "
|
|
98
|
-
"@crawlee/types": "
|
|
99
|
-
"@crawlee/utils": "
|
|
101
|
+
"@crawlee/core": "$crawlee",
|
|
102
|
+
"@crawlee/types": "$crawlee",
|
|
103
|
+
"@crawlee/utils": "$crawlee"
|
|
100
104
|
}
|
|
101
105
|
}
|
|
102
106
|
}
|
|
@@ -1,24 +1,16 @@
|
|
|
1
|
-
import
|
|
2
|
-
import type {
|
|
3
|
-
import {
|
|
4
|
-
import
|
|
1
|
+
import { BasicCrawler } from '@crawlee/basic';
|
|
2
|
+
import type { BasicCrawlerOptions, BrowserHook, LoadedRequest, Request } from '@crawlee/browser';
|
|
3
|
+
import type { ContextPipeline, CrawlingContext, EnqueueLinksOptions, GetUserDataFromRequest, RestrictedCrawlingContext, RouterRoutes, StatisticsOptions, StatisticState } from '@crawlee/core';
|
|
4
|
+
import { RequestHandlerResult, Statistics } from '@crawlee/core';
|
|
5
|
+
import type { BatchAddRequestsResult, Dictionary } from '@crawlee/types';
|
|
5
6
|
import { type CheerioRoot } from '@crawlee/utils';
|
|
6
7
|
import { type Cheerio } from 'cheerio';
|
|
8
|
+
import type { AnyNode } from 'domhandler';
|
|
7
9
|
// @ts-ignore optional peer dependency or compatibility with es2022
|
|
8
10
|
import type { Page } from 'playwright';
|
|
9
|
-
import type {
|
|
10
|
-
import type {
|
|
11
|
-
import { PlaywrightCrawler } from './playwright-crawler.js';
|
|
11
|
+
import type { SetRequired } from 'type-fest';
|
|
12
|
+
import type { PlaywrightGotoOptions } from './playwright-crawler.js';
|
|
12
13
|
import { RenderingTypePredictor } from './utils/rendering-type-prediction.js';
|
|
13
|
-
type Result<TResult> = {
|
|
14
|
-
result: TResult;
|
|
15
|
-
ok: true;
|
|
16
|
-
logs?: LogProxyCall[];
|
|
17
|
-
} | {
|
|
18
|
-
error: unknown;
|
|
19
|
-
ok: false;
|
|
20
|
-
logs?: LogProxyCall[];
|
|
21
|
-
};
|
|
22
14
|
interface AdaptivePlaywrightCrawlerStatisticState extends StatisticState {
|
|
23
15
|
httpOnlyRequestHandlerRuns?: number;
|
|
24
16
|
browserRequestHandlerRuns?: number;
|
|
@@ -33,11 +25,12 @@ declare class AdaptivePlaywrightCrawlerStatistics extends Statistics {
|
|
|
33
25
|
trackBrowserRequestHandlerRun(): void;
|
|
34
26
|
trackRenderingTypeMisprediction(): void;
|
|
35
27
|
}
|
|
36
|
-
export interface AdaptivePlaywrightCrawlerContext<UserData extends Dictionary = Dictionary> extends
|
|
28
|
+
export interface AdaptivePlaywrightCrawlerContext<UserData extends Dictionary = Dictionary> extends CrawlingContext<UserData> {
|
|
29
|
+
request: LoadedRequest<Request<UserData>>;
|
|
37
30
|
/**
|
|
38
31
|
* The HTTP response, either from the HTTP client or from the initial request from playwright's navigation.
|
|
39
32
|
*/
|
|
40
|
-
response:
|
|
33
|
+
response: Response;
|
|
41
34
|
/**
|
|
42
35
|
* Playwright Page object. If accessed in HTTP-only rendering, this will throw an error and make the AdaptivePlaywrightCrawlerContext retry the request in a browser.
|
|
43
36
|
*/
|
|
@@ -46,7 +39,7 @@ export interface AdaptivePlaywrightCrawlerContext<UserData extends Dictionary =
|
|
|
46
39
|
* Wait for an element matching the selector to appear and return a Cheerio object of matched elements.
|
|
47
40
|
* Timeout defaults to 5s.
|
|
48
41
|
*/
|
|
49
|
-
querySelector
|
|
42
|
+
querySelector(selector: string, timeoutMs?: number): Promise<Cheerio<AnyNode>>;
|
|
50
43
|
/**
|
|
51
44
|
* Wait for an element matching the selector to appear.
|
|
52
45
|
* Timeout defaults to 5s.
|
|
@@ -74,36 +67,38 @@ export interface AdaptivePlaywrightCrawlerContext<UserData extends Dictionary =
|
|
|
74
67
|
* ```
|
|
75
68
|
*/
|
|
76
69
|
parseWithCheerio(selector?: string, timeoutMs?: number): Promise<CheerioRoot>;
|
|
70
|
+
enqueueLinks(options?: EnqueueLinksOptions): Promise<unknown>;
|
|
77
71
|
}
|
|
78
|
-
interface
|
|
72
|
+
interface AdaptiveHookContext extends Pick<AdaptivePlaywrightCrawlerContext, 'id' | 'session' | 'proxyInfo' | 'log'> {
|
|
79
73
|
page?: Page;
|
|
80
|
-
|
|
74
|
+
request: Request;
|
|
75
|
+
gotoOptions?: PlaywrightGotoOptions;
|
|
81
76
|
}
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
* The function must return a promise, which is then awaited by the crawler.
|
|
90
|
-
*
|
|
91
|
-
* If the function throws an exception, the crawler will try to re-crawl the
|
|
92
|
-
* request later, up to `option.maxRequestRetries` times.
|
|
93
|
-
*/
|
|
94
|
-
requestHandler?: (crawlingContext: LoadedContext<AdaptivePlaywrightCrawlerContext>) => Awaitable<void>;
|
|
77
|
+
interface AdaptiveHook extends BrowserHook<AdaptiveHookContext> {
|
|
78
|
+
}
|
|
79
|
+
interface AdaptivePostNavigationHook extends BrowserHook<Omit<AdaptiveHookContext, 'request'> & {
|
|
80
|
+
request: LoadedRequest<Request>;
|
|
81
|
+
}> {
|
|
82
|
+
}
|
|
83
|
+
export interface AdaptivePlaywrightCrawlerOptions<ExtendedContext extends AdaptivePlaywrightCrawlerContext = AdaptivePlaywrightCrawlerContext> extends Omit<BasicCrawlerOptions<AdaptivePlaywrightCrawlerContext, ExtendedContext>, 'preNavigationHooks' | 'postNavigationHooks'> {
|
|
95
84
|
/**
|
|
96
85
|
* Async functions that are sequentially evaluated before the navigation. Good for setting additional cookies.
|
|
97
86
|
* The function accepts a subset of the crawling context. If you attempt to access the `page` property during HTTP-only crawling,
|
|
98
87
|
* an exception will be thrown. If it's not caught, the request will be transparently retried in a browser.
|
|
88
|
+
*
|
|
89
|
+
* A hook may optionally return a partial object whose properties are merged into the crawling context,
|
|
90
|
+
* allowing the hook to override context members for subsequent hooks and pipeline stages.
|
|
99
91
|
*/
|
|
100
92
|
preNavigationHooks?: AdaptiveHook[];
|
|
101
93
|
/**
|
|
102
94
|
* Async functions that are sequentially evaluated after the navigation. Good for checking if the navigation was successful.
|
|
103
95
|
* The function accepts a subset of the crawling context. If you attempt to access the `page` property during HTTP-only crawling,
|
|
104
96
|
* an exception will be thrown. If it's not caught, the request will be transparently retried in a browser.
|
|
97
|
+
*
|
|
98
|
+
* A hook may optionally return a partial object whose properties are merged into the crawling context
|
|
99
|
+
* (e.g. to override `response` after solving a challenge).
|
|
105
100
|
*/
|
|
106
|
-
postNavigationHooks?:
|
|
101
|
+
postNavigationHooks?: AdaptivePostNavigationHook[];
|
|
107
102
|
/**
|
|
108
103
|
* Specifies the frequency of rendering type detection checks - 0.1 means roughly 10% of requests.
|
|
109
104
|
* Defaults to 0.1 (so 10%).
|
|
@@ -117,23 +112,24 @@ export interface AdaptivePlaywrightCrawlerOptions extends Omit<PlaywrightCrawler
|
|
|
117
112
|
resultChecker?: (result: RequestHandlerResult) => boolean;
|
|
118
113
|
/**
|
|
119
114
|
* An optional callback used in rendering type detection. On each detection, the result of the plain HTTP run is compared to that of the browser one.
|
|
120
|
-
* If
|
|
115
|
+
* If a callback is provided, the contract is as follows:
|
|
116
|
+
* It the callback returns true or 'equal', the results are considered equal and the target site is considered static.
|
|
117
|
+
* If it returns false or 'different', the target site is considered client-rendered.
|
|
118
|
+
* If it returns 'inconclusive', the detection result won't be used.
|
|
121
119
|
* If no result comparator is specified, but there is a `resultChecker`, any site where the `resultChecker` returns true is considered static.
|
|
122
120
|
* If neither `resultComparator` nor `resultChecker` are specified, a deep comparison of returned dataset items is used as a default.
|
|
123
121
|
*/
|
|
124
|
-
resultComparator?: (resultA: RequestHandlerResult, resultB: RequestHandlerResult) => boolean;
|
|
122
|
+
resultComparator?: (resultA: RequestHandlerResult, resultB: RequestHandlerResult) => boolean | 'equal' | 'different' | 'inconclusive';
|
|
125
123
|
/**
|
|
126
124
|
* A custom rendering type predictor
|
|
127
125
|
*/
|
|
128
|
-
renderingTypePredictor?: Pick<RenderingTypePredictor, 'predict' | 'storeResult'>;
|
|
126
|
+
renderingTypePredictor?: Pick<RenderingTypePredictor, 'predict' | 'storeResult' | 'initialize'>;
|
|
129
127
|
/**
|
|
130
128
|
* Prevent direct access to storage in request handlers (only allow using context helpers).
|
|
131
129
|
* Defaults to `true`
|
|
132
130
|
*/
|
|
133
131
|
preventDirectStorageAccess?: boolean;
|
|
134
132
|
}
|
|
135
|
-
declare const proxyLogMethods: readonly ["error", "exception", "softFail", "info", "debug", "perf", "warningOnce", "deprecated"];
|
|
136
|
-
type LogProxyCall = [log: Log, method: (typeof proxyLogMethods)[number], ...args: unknown[]];
|
|
137
133
|
/**
|
|
138
134
|
* An extension of {@link PlaywrightCrawler} that uses a more limited request handler interface so that it is able to switch to HTTP-only crawling when it detects it may be possible.
|
|
139
135
|
*
|
|
@@ -163,31 +159,45 @@ type LogProxyCall = [log: Log, method: (typeof proxyLogMethods)[number], ...args
|
|
|
163
159
|
*
|
|
164
160
|
* @experimental
|
|
165
161
|
*/
|
|
166
|
-
export declare class AdaptivePlaywrightCrawler extends
|
|
167
|
-
readonly config: Configuration;
|
|
168
|
-
private adaptiveRequestHandler;
|
|
162
|
+
export declare class AdaptivePlaywrightCrawler<ExtendedContext extends AdaptivePlaywrightCrawlerContext = AdaptivePlaywrightCrawlerContext> extends BasicCrawler<AdaptivePlaywrightCrawlerContext, ExtendedContext> {
|
|
169
163
|
private renderingTypePredictor;
|
|
170
164
|
private resultChecker;
|
|
171
165
|
private resultComparator;
|
|
172
166
|
private preventDirectStorageAccess;
|
|
167
|
+
private staticContextPipeline;
|
|
168
|
+
private browserContextPipeline;
|
|
169
|
+
private individualRequestHandlerTimeoutMillis;
|
|
173
170
|
readonly stats: AdaptivePlaywrightCrawlerStatistics;
|
|
171
|
+
private resultObjects;
|
|
172
|
+
private inFlightRenderingTypeDetections;
|
|
173
|
+
private teardownHooks;
|
|
174
|
+
constructor(options?: AdaptivePlaywrightCrawlerOptions<ExtendedContext>);
|
|
175
|
+
protected _init(): Promise<void>;
|
|
176
|
+
protected buildContextPipeline(): ContextPipeline<CrawlingContext<Dictionary>, CrawlingContext<Dictionary> & {
|
|
177
|
+
readonly request: LoadedRequest<Request<Dictionary>>;
|
|
178
|
+
readonly response: Response;
|
|
179
|
+
readonly page: Page;
|
|
180
|
+
readonly querySelector: AdaptivePlaywrightCrawlerContext["querySelector"];
|
|
181
|
+
readonly waitForSelector: AdaptivePlaywrightCrawlerContext["waitForSelector"];
|
|
182
|
+
readonly parseWithCheerio: AdaptivePlaywrightCrawlerContext["parseWithCheerio"];
|
|
183
|
+
}>;
|
|
184
|
+
private adaptCheerioContext;
|
|
185
|
+
private adaptPlaywrightContext;
|
|
186
|
+
private crawlOne;
|
|
187
|
+
protected runRequestHandler(crawlingContext: CrawlingContext): Promise<void>;
|
|
188
|
+
protected commitResult(crawlingContext: CrawlingContext, { calls, keyValueStoreChanges }: RequestHandlerResult): Promise<void>;
|
|
189
|
+
protected allowStorageAccess<R, TArgs extends any[]>(func: (...args: TArgs) => Promise<R>): (...args: TArgs) => Promise<R>;
|
|
174
190
|
/**
|
|
175
|
-
*
|
|
176
|
-
*
|
|
191
|
+
* Reading the pending request count queries the underlying request manager, which counts as storage access.
|
|
192
|
+
* Since this is internal crawler bookkeeping used to compute the `enqueueLinks` limit (not user-initiated storage
|
|
193
|
+
* access), it must be allowed even while a request handler runs inside the storage-access guard.
|
|
177
194
|
*/
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
constructor(options?: AdaptivePlaywrightCrawlerOptions, config?: Configuration);
|
|
181
|
-
protected _runRequestHandler(crawlingContext: PlaywrightCrawlingContext): Promise<void>;
|
|
182
|
-
protected commitResult(crawlingContext: PlaywrightCrawlingContext, { calls, keyValueStoreChanges }: RequestHandlerResult): Promise<void>;
|
|
183
|
-
protected allowStorageAccess<R, TArgs extends any[]>(func: (...args: TArgs) => Promise<R>): (...args: TArgs) => Promise<R>;
|
|
184
|
-
protected runRequestHandlerInBrowser(crawlingContext: PlaywrightCrawlingContext): Promise<{
|
|
185
|
-
result: Result<RequestHandlerResult>;
|
|
186
|
-
initialStateCopy?: Record<string, unknown>;
|
|
187
|
-
}>;
|
|
188
|
-
protected runRequestHandlerWithPlainHTTP(crawlingContext: PlaywrightCrawlingContext, oldStateCopy?: Dictionary): Promise<Result<RequestHandlerResult>>;
|
|
195
|
+
protected getPendingRequestCountApproximation(): Promise<number>;
|
|
196
|
+
protected enqueueLinks(options: SetRequired<EnqueueLinksOptions, 'urls'>, request: RestrictedCrawlingContext['request'], result: RequestHandlerResult): Promise<BatchAddRequestsResult>;
|
|
189
197
|
private createLogProxy;
|
|
198
|
+
teardown(): Promise<void>;
|
|
190
199
|
}
|
|
191
|
-
|
|
200
|
+
// @ts-ignore optional peer dependency or compatibility with es2022
|
|
201
|
+
export declare function createAdaptivePlaywrightRouter<Context extends AdaptivePlaywrightCrawlerContext = AdaptivePlaywrightCrawlerContext, UserData extends Dictionary = GetUserDataFromRequest<Context['request']>>(routes?: RouterRoutes<Context, UserData>): import("@crawlee/basic").RouterHandler<Context>;
|
|
192
202
|
export {};
|
|
193
203
|
//# sourceMappingURL=adaptive-playwright-crawler.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"adaptive-playwright-crawler.d.ts","sourceRoot":"","sources":["../../src/internals/adaptive-playwright-crawler.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"adaptive-playwright-crawler.d.ts","sourceRoot":"","sources":["../../src/internals/adaptive-playwright-crawler.ts"],"names":[],"mappings":"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"}
|