diff --git a/docs/api/puppeteer.frame.__eval.md b/docs/api/puppeteer.frame.__eval.md index a2ec8290..2d0034b7 100644 --- a/docs/api/puppeteer.frame.__eval.md +++ b/docs/api/puppeteer.frame.__eval.md @@ -21,7 +21,7 @@ class Frame { > = EvaluateFuncWith>, Params>, >( selector: Selector, - pageFunction: Func | string, + pageFunction: string | Func, ...args: Params ): Promise>>; } @@ -32,7 +32,7 @@ class Frame { | Parameter | Type | Description | | ------------ | -------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------- | | selector | Selector | The selector to query for. | -| pageFunction | Func \| string | The function to be evaluated in the frame's context. An array of elements matching the given selector will be passed to the function as its first argument. | +| pageFunction | string \| Func | The function to be evaluated in the frame's context. An array of elements matching the given selector will be passed to the function as its first argument. | | args | Params | Additional arguments to pass to pageFunction. | **Returns:** diff --git a/docs/api/puppeteer.frame._eval.md b/docs/api/puppeteer.frame._eval.md index f7322cee..9a528518 100644 --- a/docs/api/puppeteer.frame._eval.md +++ b/docs/api/puppeteer.frame._eval.md @@ -21,7 +21,7 @@ class Frame { >, >( selector: Selector, - pageFunction: Func | string, + pageFunction: string | Func, ...args: Params ): Promise>>; } @@ -32,7 +32,7 @@ class Frame { | Parameter | Type | Description | | ------------ | -------------- | -------------------------------------------------------------------------------------------------------------------------------------------------- | | selector | Selector | The selector to query for. | -| pageFunction | Func \| string | The function to be evaluated in the frame's context. The first element matching the selector will be passed to the function as its first argument. | +| pageFunction | string \| Func | The function to be evaluated in the frame's context. The first element matching the selector will be passed to the function as its first argument. | | args | Params | Additional arguments to pass to pageFunction. | **Returns:** diff --git a/docs/api/puppeteer.frame.childframes.md b/docs/api/puppeteer.frame.childframes.md index e6216568..84fe5b86 100644 --- a/docs/api/puppeteer.frame.childframes.md +++ b/docs/api/puppeteer.frame.childframes.md @@ -10,7 +10,7 @@ An array of child frames. ```typescript class Frame { - childFrames(): Frame[]; + abstract childFrames(): Frame[]; } ``` diff --git a/docs/api/puppeteer.frame.goto.md b/docs/api/puppeteer.frame.goto.md index ff1cc00c..df5e6a40 100644 --- a/docs/api/puppeteer.frame.goto.md +++ b/docs/api/puppeteer.frame.goto.md @@ -10,7 +10,7 @@ Navigates a frame to the given url. ```typescript class Frame { - goto( + abstract goto( url: string, options?: { referer?: string; diff --git a/docs/api/puppeteer.frame.isdetached.md b/docs/api/puppeteer.frame.isdetached.md index a43bcb70..579145d6 100644 --- a/docs/api/puppeteer.frame.isdetached.md +++ b/docs/api/puppeteer.frame.isdetached.md @@ -10,7 +10,7 @@ Is`true` if the frame has been detached. Otherwise, `false`. ```typescript class Frame { - isDetached(): boolean; + abstract isDetached(): boolean; } ``` diff --git a/docs/api/puppeteer.frame.md b/docs/api/puppeteer.frame.md index b01d1e4f..a87cec0a 100644 --- a/docs/api/puppeteer.frame.md +++ b/docs/api/puppeteer.frame.md @@ -11,7 +11,7 @@ To understand frames, you can think of frames as `