docs: introduce the Guides section + restore req interception docs (#8758)
Closes #8744
This commit is contained in:
parent
8be8f5ff72
commit
6934b94f23
@ -74,84 +74,84 @@ page.off('request', logRequest);
|
||||
|
||||
## Methods
|
||||
|
||||
| Method | Modifiers | Description |
|
||||
| ------------------------------------------------------------------------------------------- | --------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
||||
| [$(selector)](./puppeteer.page._.md) | | Runs <code>document.querySelector</code> within the page. If no element matches the selector, the return value resolves to <code>null</code>. |
|
||||
| [$$(selector)](./puppeteer.page.__.md) | | The method runs <code>document.querySelectorAll</code> within the page. If no elements match the selector, the return value resolves to <code>[]</code>. |
|
||||
| [$$eval(selector, pageFunction, args)](./puppeteer.page.__eval.md) | | This method runs <code>Array.from(document.querySelectorAll(selector))</code> within the page and passes the result as the first argument to the <code>pageFunction</code>. |
|
||||
| [$eval(selector, pageFunction, args)](./puppeteer.page._eval.md) | | This method runs <code>document.querySelector</code> within the page and passes the result as the first argument to the <code>pageFunction</code>. |
|
||||
| [$x(expression)](./puppeteer.page._x.md) | | The method evaluates the XPath expression relative to the page document as its context node. If there are no such elements, the method resolves to an empty array. |
|
||||
| [addScriptTag(options)](./puppeteer.page.addscripttag.md) | | Adds a <code><script></code> tag into the page with the desired URL or content. |
|
||||
| [addStyleTag(options)](./puppeteer.page.addstyletag.md) | | Adds a <code><link rel="stylesheet"></code> tag into the page with the desired URL or a <code><style type="text/css"></code> tag with the content. |
|
||||
| [authenticate(credentials)](./puppeteer.page.authenticate.md) | | Provide credentials for <code>HTTP authentication</code>. |
|
||||
| [bringToFront()](./puppeteer.page.bringtofront.md) | | Brings page to front (activates tab). |
|
||||
| [browser()](./puppeteer.page.browser.md) | | Get the browser the page belongs to. |
|
||||
| [browserContext()](./puppeteer.page.browsercontext.md) | | Get the browser context that the page belongs to. |
|
||||
| [click(selector, options)](./puppeteer.page.click.md) | | This method fetches an element with <code>selector</code>, scrolls it into view if needed, and then uses [Page.mouse](./puppeteer.page.mouse.md) to click in the center of the element. If there's no element matching <code>selector</code>, the method throws an error. |
|
||||
| [close(options)](./puppeteer.page.close.md) | | |
|
||||
| [content()](./puppeteer.page.content.md) | | |
|
||||
| [cookies(urls)](./puppeteer.page.cookies.md) | | If no URLs are specified, this method returns cookies for the current page URL. If URLs are specified, only cookies for those URLs are returned. |
|
||||
| [createPDFStream(options)](./puppeteer.page.createpdfstream.md) | | Generates a PDF of the page with the <code>print</code> CSS media type. |
|
||||
| [deleteCookie(cookies)](./puppeteer.page.deletecookie.md) | | |
|
||||
| [emulate(options)](./puppeteer.page.emulate.md) | | Emulates given device metrics and user agent. |
|
||||
| [emulateCPUThrottling(factor)](./puppeteer.page.emulatecputhrottling.md) | | Enables CPU throttling to emulate slow CPUs. |
|
||||
| [emulateIdleState(overrides)](./puppeteer.page.emulateidlestate.md) | | Emulates the idle state. If no arguments set, clears idle state emulation. |
|
||||
| [emulateMediaFeatures(features)](./puppeteer.page.emulatemediafeatures.md) | | |
|
||||
| [emulateMediaType(type)](./puppeteer.page.emulatemediatype.md) | | |
|
||||
| [emulateNetworkConditions(networkConditions)](./puppeteer.page.emulatenetworkconditions.md) | | |
|
||||
| [emulateTimezone(timezoneId)](./puppeteer.page.emulatetimezone.md) | | |
|
||||
| [emulateVisionDeficiency(type)](./puppeteer.page.emulatevisiondeficiency.md) | | Simulates the given vision deficiency on the page. |
|
||||
| [evaluate(pageFunction, args)](./puppeteer.page.evaluate.md) | | |
|
||||
| [evaluateHandle(pageFunction, args)](./puppeteer.page.evaluatehandle.md) | | |
|
||||
| [evaluateOnNewDocument(pageFunction, args)](./puppeteer.page.evaluateonnewdocument.md) | | <p>Adds a function which would be invoked in one of the following scenarios:</p><p>- whenever the page is navigated</p><p>- whenever the child frame is attached or navigated. In this case, the function is invoked in the context of the newly attached frame.</p><p>The function is invoked after the document was created but before any of its scripts were run. This is useful to amend the JavaScript environment, e.g. to seed <code>Math.random</code>.</p> |
|
||||
| [exposeFunction(name, pptrFunction)](./puppeteer.page.exposefunction.md) | | <p>The method adds a function called <code>name</code> on the page's <code>window</code> object. When called, the function executes <code>puppeteerFunction</code> in node.js and returns a <code>Promise</code> which resolves to the return value of <code>puppeteerFunction</code>.</p><p>If the puppeteerFunction returns a <code>Promise</code>, it will be awaited.</p><p>NOTE: Functions installed via <code>page.exposeFunction</code> survive navigations.</p> |
|
||||
| [focus(selector)](./puppeteer.page.focus.md) | | This method fetches an element with <code>selector</code> and focuses it. If there's no element matching <code>selector</code>, the method throws an error. |
|
||||
| [frames()](./puppeteer.page.frames.md) | | |
|
||||
| [goBack(options)](./puppeteer.page.goback.md) | | This method navigate to the previous page in history. |
|
||||
| [goForward(options)](./puppeteer.page.goforward.md) | | This method navigate to the next page in history. |
|
||||
| [goto(url, options)](./puppeteer.page.goto.md) | | |
|
||||
| [hover(selector)](./puppeteer.page.hover.md) | | This method fetches an element with <code>selector</code>, scrolls it into view if needed, and then uses [Page.mouse](./puppeteer.page.mouse.md) to hover over the center of the element. If there's no element matching <code>selector</code>, the method throws an error. |
|
||||
| [isClosed()](./puppeteer.page.isclosed.md) | | Indicates that the page has been closed. |
|
||||
| [isDragInterceptionEnabled()](./puppeteer.page.isdraginterceptionenabled.md) | | |
|
||||
| [isJavaScriptEnabled()](./puppeteer.page.isjavascriptenabled.md) | | |
|
||||
| [mainFrame()](./puppeteer.page.mainframe.md) | | |
|
||||
| [metrics()](./puppeteer.page.metrics.md) | | |
|
||||
| [off(eventName, handler)](./puppeteer.page.off.md) | | |
|
||||
| [on(eventName, handler)](./puppeteer.page.on.md) | | <p>Listen to page events.</p><p>:::note</p><p>This method exists to define event typings and handle proper wireup of cooperative request interception. Actual event listening and dispatching is delegated to [EventEmitter](./puppeteer.eventemitter.md).</p><p>:::</p> |
|
||||
| [once(eventName, handler)](./puppeteer.page.once.md) | | |
|
||||
| [pdf(options)](./puppeteer.page.pdf.md) | | |
|
||||
| [queryObjects(prototypeHandle)](./puppeteer.page.queryobjects.md) | | This method iterates the JavaScript heap and finds all objects with the given prototype. |
|
||||
| [reload(options)](./puppeteer.page.reload.md) | | |
|
||||
| [screenshot(options)](./puppeteer.page.screenshot.md) | | |
|
||||
| [select(selector, values)](./puppeteer.page.select.md) | | Triggers a <code>change</code> and <code>input</code> event once all the provided options have been selected. If there's no <code><select></code> element matching <code>selector</code>, the method throws an error. |
|
||||
| [setBypassCSP(enabled)](./puppeteer.page.setbypasscsp.md) | | Toggles bypassing page's Content-Security-Policy. |
|
||||
| [setCacheEnabled(enabled)](./puppeteer.page.setcacheenabled.md) | | Toggles ignoring cache for each request based on the enabled state. By default, caching is enabled. |
|
||||
| [setContent(html, options)](./puppeteer.page.setcontent.md) | | |
|
||||
| [setCookie(cookies)](./puppeteer.page.setcookie.md) | | |
|
||||
| [setDefaultNavigationTimeout(timeout)](./puppeteer.page.setdefaultnavigationtimeout.md) | | <p>This setting will change the default maximum navigation time for the following methods and related shortcuts:</p><p>- [page.goBack(options)](./puppeteer.page.goback.md)</p><p>- [page.goForward(options)](./puppeteer.page.goforward.md)</p><p>- [page.goto(url,options)](./puppeteer.page.goto.md)</p><p>- [page.reload(options)](./puppeteer.page.reload.md)</p><p>- [page.setContent(html,options)](./puppeteer.page.setcontent.md)</p><p>- [page.waitForNavigation(options)](./puppeteer.page.waitfornavigation.md)</p> |
|
||||
| [setDefaultTimeout(timeout)](./puppeteer.page.setdefaulttimeout.md) | | |
|
||||
| [setDragInterception(enabled)](./puppeteer.page.setdraginterception.md) | | |
|
||||
| [setExtraHTTPHeaders(headers)](./puppeteer.page.setextrahttpheaders.md) | | The extra HTTP headers will be sent with every request the page initiates. NOTE: All HTTP header names are lowercased. (HTTP headers are case-insensitive, so this shouldn’t impact your server code.) NOTE: page.setExtraHTTPHeaders does not guarantee the order of headers in the outgoing requests. |
|
||||
| [setGeolocation(options)](./puppeteer.page.setgeolocation.md) | | Sets the page's geolocation. |
|
||||
| [setJavaScriptEnabled(enabled)](./puppeteer.page.setjavascriptenabled.md) | | |
|
||||
| [setOfflineMode(enabled)](./puppeteer.page.setofflinemode.md) | | |
|
||||
| [setRequestInterception(value)](./puppeteer.page.setrequestinterception.md) | | |
|
||||
| [setUserAgent(userAgent, userAgentMetadata)](./puppeteer.page.setuseragent.md) | | |
|
||||
| [setViewport(viewport)](./puppeteer.page.setviewport.md) | | <p><code>page.setViewport</code> will resize the page. A lot of websites don't expect phones to change size, so you should set the viewport before navigating to the page.</p><p>In the case of multiple pages in a single browser, each page can have its own viewport size.</p> |
|
||||
| [tap(selector)](./puppeteer.page.tap.md) | | This method fetches an element with <code>selector</code>, scrolls it into view if needed, and then uses [Page.touchscreen](./puppeteer.page.touchscreen.md) to tap in the center of the element. If there's no element matching <code>selector</code>, the method throws an error. |
|
||||
| [target()](./puppeteer.page.target.md) | | |
|
||||
| [title()](./puppeteer.page.title.md) | | |
|
||||
| [type(selector, text, options)](./puppeteer.page.type.md) | | <p>Sends a <code>keydown</code>, <code>keypress/input</code>, and <code>keyup</code> event for each character in the text.</p><p>To press a special key, like <code>Control</code> or <code>ArrowDown</code>, use [Keyboard.press()](./puppeteer.keyboard.press.md).</p> |
|
||||
| [url()](./puppeteer.page.url.md) | | |
|
||||
| [viewport()](./puppeteer.page.viewport.md) | | |
|
||||
| [waitForFileChooser(options)](./puppeteer.page.waitforfilechooser.md) | | <p>This method is typically coupled with an action that triggers file choosing.</p><p>:::caution</p><p>This must be called before the file chooser is launched. It will not return a currently active file chooser.</p><p>:::</p> |
|
||||
| [waitForFrame(urlOrPredicate, options)](./puppeteer.page.waitforframe.md) | | |
|
||||
| [waitForFunction(pageFunction, options, args)](./puppeteer.page.waitforfunction.md) | | Waits for a function to finish evaluating in the page's context. |
|
||||
| [waitForNavigation(options)](./puppeteer.page.waitfornavigation.md) | | Waits for the page to navigate to a new URL or to reload. It is useful when you run code that will indirectly cause the page to navigate. |
|
||||
| [waitForNetworkIdle(options)](./puppeteer.page.waitfornetworkidle.md) | | |
|
||||
| [waitForRequest(urlOrPredicate, options)](./puppeteer.page.waitforrequest.md) | | |
|
||||
| [waitForResponse(urlOrPredicate, options)](./puppeteer.page.waitforresponse.md) | | |
|
||||
| [waitForSelector(selector, options)](./puppeteer.page.waitforselector.md) | | <p>Wait for the <code>selector</code> to appear in page. If at the moment of calling the method the <code>selector</code> already exists, the method will return immediately. If the <code>selector</code> doesn't appear after the <code>timeout</code> milliseconds of waiting, the function will throw.</p><p>This method works across navigations:</p> |
|
||||
| Method | Modifiers | Description |
|
||||
| ------------------------------------------------------------------------------------------- | --------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
|
||||
| [$(selector)](./puppeteer.page._.md) | | Runs <code>document.querySelector</code> within the page. If no element matches the selector, the return value resolves to <code>null</code>. |
|
||||
| [$$(selector)](./puppeteer.page.__.md) | | The method runs <code>document.querySelectorAll</code> within the page. If no elements match the selector, the return value resolves to <code>[]</code>. |
|
||||
| [$$eval(selector, pageFunction, args)](./puppeteer.page.__eval.md) | | This method runs <code>Array.from(document.querySelectorAll(selector))</code> within the page and passes the result as the first argument to the <code>pageFunction</code>. |
|
||||
| [$eval(selector, pageFunction, args)](./puppeteer.page._eval.md) | | This method runs <code>document.querySelector</code> within the page and passes the result as the first argument to the <code>pageFunction</code>. |
|
||||
| [$x(expression)](./puppeteer.page._x.md) | | The method evaluates the XPath expression relative to the page document as its context node. If there are no such elements, the method resolves to an empty array. |
|
||||
| [addScriptTag(options)](./puppeteer.page.addscripttag.md) | | Adds a <code><script></code> tag into the page with the desired URL or content. |
|
||||
| [addStyleTag(options)](./puppeteer.page.addstyletag.md) | | Adds a <code><link rel="stylesheet"></code> tag into the page with the desired URL or a <code><style type="text/css"></code> tag with the content. |
|
||||
| [authenticate(credentials)](./puppeteer.page.authenticate.md) | | Provide credentials for <code>HTTP authentication</code>. |
|
||||
| [bringToFront()](./puppeteer.page.bringtofront.md) | | Brings page to front (activates tab). |
|
||||
| [browser()](./puppeteer.page.browser.md) | | Get the browser the page belongs to. |
|
||||
| [browserContext()](./puppeteer.page.browsercontext.md) | | Get the browser context that the page belongs to. |
|
||||
| [click(selector, options)](./puppeteer.page.click.md) | | This method fetches an element with <code>selector</code>, scrolls it into view if needed, and then uses [Page.mouse](./puppeteer.page.mouse.md) to click in the center of the element. If there's no element matching <code>selector</code>, the method throws an error. |
|
||||
| [close(options)](./puppeteer.page.close.md) | | |
|
||||
| [content()](./puppeteer.page.content.md) | | |
|
||||
| [cookies(urls)](./puppeteer.page.cookies.md) | | If no URLs are specified, this method returns cookies for the current page URL. If URLs are specified, only cookies for those URLs are returned. |
|
||||
| [createPDFStream(options)](./puppeteer.page.createpdfstream.md) | | Generates a PDF of the page with the <code>print</code> CSS media type. |
|
||||
| [deleteCookie(cookies)](./puppeteer.page.deletecookie.md) | | |
|
||||
| [emulate(options)](./puppeteer.page.emulate.md) | | Emulates given device metrics and user agent. |
|
||||
| [emulateCPUThrottling(factor)](./puppeteer.page.emulatecputhrottling.md) | | Enables CPU throttling to emulate slow CPUs. |
|
||||
| [emulateIdleState(overrides)](./puppeteer.page.emulateidlestate.md) | | Emulates the idle state. If no arguments set, clears idle state emulation. |
|
||||
| [emulateMediaFeatures(features)](./puppeteer.page.emulatemediafeatures.md) | | |
|
||||
| [emulateMediaType(type)](./puppeteer.page.emulatemediatype.md) | | |
|
||||
| [emulateNetworkConditions(networkConditions)](./puppeteer.page.emulatenetworkconditions.md) | | |
|
||||
| [emulateTimezone(timezoneId)](./puppeteer.page.emulatetimezone.md) | | |
|
||||
| [emulateVisionDeficiency(type)](./puppeteer.page.emulatevisiondeficiency.md) | | Simulates the given vision deficiency on the page. |
|
||||
| [evaluate(pageFunction, args)](./puppeteer.page.evaluate.md) | | |
|
||||
| [evaluateHandle(pageFunction, args)](./puppeteer.page.evaluatehandle.md) | | |
|
||||
| [evaluateOnNewDocument(pageFunction, args)](./puppeteer.page.evaluateonnewdocument.md) | | <p>Adds a function which would be invoked in one of the following scenarios:</p><p>- whenever the page is navigated</p><p>- whenever the child frame is attached or navigated. In this case, the function is invoked in the context of the newly attached frame.</p><p>The function is invoked after the document was created but before any of its scripts were run. This is useful to amend the JavaScript environment, e.g. to seed <code>Math.random</code>.</p> |
|
||||
| [exposeFunction(name, pptrFunction)](./puppeteer.page.exposefunction.md) | | <p>The method adds a function called <code>name</code> on the page's <code>window</code> object. When called, the function executes <code>puppeteerFunction</code> in node.js and returns a <code>Promise</code> which resolves to the return value of <code>puppeteerFunction</code>.</p><p>If the puppeteerFunction returns a <code>Promise</code>, it will be awaited.</p><p>NOTE: Functions installed via <code>page.exposeFunction</code> survive navigations.</p> |
|
||||
| [focus(selector)](./puppeteer.page.focus.md) | | This method fetches an element with <code>selector</code> and focuses it. If there's no element matching <code>selector</code>, the method throws an error. |
|
||||
| [frames()](./puppeteer.page.frames.md) | | |
|
||||
| [goBack(options)](./puppeteer.page.goback.md) | | This method navigate to the previous page in history. |
|
||||
| [goForward(options)](./puppeteer.page.goforward.md) | | This method navigate to the next page in history. |
|
||||
| [goto(url, options)](./puppeteer.page.goto.md) | | |
|
||||
| [hover(selector)](./puppeteer.page.hover.md) | | This method fetches an element with <code>selector</code>, scrolls it into view if needed, and then uses [Page.mouse](./puppeteer.page.mouse.md) to hover over the center of the element. If there's no element matching <code>selector</code>, the method throws an error. |
|
||||
| [isClosed()](./puppeteer.page.isclosed.md) | | Indicates that the page has been closed. |
|
||||
| [isDragInterceptionEnabled()](./puppeteer.page.isdraginterceptionenabled.md) | | |
|
||||
| [isJavaScriptEnabled()](./puppeteer.page.isjavascriptenabled.md) | | |
|
||||
| [mainFrame()](./puppeteer.page.mainframe.md) | | |
|
||||
| [metrics()](./puppeteer.page.metrics.md) | | |
|
||||
| [off(eventName, handler)](./puppeteer.page.off.md) | | |
|
||||
| [on(eventName, handler)](./puppeteer.page.on.md) | | <p>Listen to page events.</p><p>:::note</p><p>This method exists to define event typings and handle proper wireup of cooperative request interception. Actual event listening and dispatching is delegated to [EventEmitter](./puppeteer.eventemitter.md).</p><p>:::</p> |
|
||||
| [once(eventName, handler)](./puppeteer.page.once.md) | | |
|
||||
| [pdf(options)](./puppeteer.page.pdf.md) | | |
|
||||
| [queryObjects(prototypeHandle)](./puppeteer.page.queryobjects.md) | | This method iterates the JavaScript heap and finds all objects with the given prototype. |
|
||||
| [reload(options)](./puppeteer.page.reload.md) | | |
|
||||
| [screenshot(options)](./puppeteer.page.screenshot.md) | | |
|
||||
| [select(selector, values)](./puppeteer.page.select.md) | | Triggers a <code>change</code> and <code>input</code> event once all the provided options have been selected. If there's no <code><select></code> element matching <code>selector</code>, the method throws an error. |
|
||||
| [setBypassCSP(enabled)](./puppeteer.page.setbypasscsp.md) | | Toggles bypassing page's Content-Security-Policy. |
|
||||
| [setCacheEnabled(enabled)](./puppeteer.page.setcacheenabled.md) | | Toggles ignoring cache for each request based on the enabled state. By default, caching is enabled. |
|
||||
| [setContent(html, options)](./puppeteer.page.setcontent.md) | | |
|
||||
| [setCookie(cookies)](./puppeteer.page.setcookie.md) | | |
|
||||
| [setDefaultNavigationTimeout(timeout)](./puppeteer.page.setdefaultnavigationtimeout.md) | | <p>This setting will change the default maximum navigation time for the following methods and related shortcuts:</p><p>- [page.goBack(options)](./puppeteer.page.goback.md)</p><p>- [page.goForward(options)](./puppeteer.page.goforward.md)</p><p>- [page.goto(url,options)](./puppeteer.page.goto.md)</p><p>- [page.reload(options)](./puppeteer.page.reload.md)</p><p>- [page.setContent(html,options)](./puppeteer.page.setcontent.md)</p><p>- [page.waitForNavigation(options)](./puppeteer.page.waitfornavigation.md)</p> |
|
||||
| [setDefaultTimeout(timeout)](./puppeteer.page.setdefaulttimeout.md) | | |
|
||||
| [setDragInterception(enabled)](./puppeteer.page.setdraginterception.md) | | |
|
||||
| [setExtraHTTPHeaders(headers)](./puppeteer.page.setextrahttpheaders.md) | | The extra HTTP headers will be sent with every request the page initiates. NOTE: All HTTP header names are lowercased. (HTTP headers are case-insensitive, so this shouldn’t impact your server code.) NOTE: page.setExtraHTTPHeaders does not guarantee the order of headers in the outgoing requests. |
|
||||
| [setGeolocation(options)](./puppeteer.page.setgeolocation.md) | | Sets the page's geolocation. |
|
||||
| [setJavaScriptEnabled(enabled)](./puppeteer.page.setjavascriptenabled.md) | | |
|
||||
| [setOfflineMode(enabled)](./puppeteer.page.setofflinemode.md) | | |
|
||||
| [setRequestInterception(value)](./puppeteer.page.setrequestinterception.md) | | <p>Activating request interception enables [HTTPRequest.abort()](./puppeteer.httprequest.abort.md), [HTTPRequest.continue()](./puppeteer.httprequest.continue.md) and [HTTPRequest.respond()](./puppeteer.httprequest.respond.md) methods. This provides the capability to modify network requests that are made by a page.</p><p>Once request interception is enabled, every request will stall unless it's continued, responded or aborted; or completed using the browser cache.</p><p>NOTE: Enabling request interception disables page caching.</p><p>See the [Request interception guide](https://pptr.dev/next/guides/request-interception) for more details.</p> |
|
||||
| [setUserAgent(userAgent, userAgentMetadata)](./puppeteer.page.setuseragent.md) | | |
|
||||
| [setViewport(viewport)](./puppeteer.page.setviewport.md) | | <p><code>page.setViewport</code> will resize the page. A lot of websites don't expect phones to change size, so you should set the viewport before navigating to the page.</p><p>In the case of multiple pages in a single browser, each page can have its own viewport size.</p> |
|
||||
| [tap(selector)](./puppeteer.page.tap.md) | | This method fetches an element with <code>selector</code>, scrolls it into view if needed, and then uses [Page.touchscreen](./puppeteer.page.touchscreen.md) to tap in the center of the element. If there's no element matching <code>selector</code>, the method throws an error. |
|
||||
| [target()](./puppeteer.page.target.md) | | |
|
||||
| [title()](./puppeteer.page.title.md) | | |
|
||||
| [type(selector, text, options)](./puppeteer.page.type.md) | | <p>Sends a <code>keydown</code>, <code>keypress/input</code>, and <code>keyup</code> event for each character in the text.</p><p>To press a special key, like <code>Control</code> or <code>ArrowDown</code>, use [Keyboard.press()](./puppeteer.keyboard.press.md).</p> |
|
||||
| [url()](./puppeteer.page.url.md) | | |
|
||||
| [viewport()](./puppeteer.page.viewport.md) | | |
|
||||
| [waitForFileChooser(options)](./puppeteer.page.waitforfilechooser.md) | | <p>This method is typically coupled with an action that triggers file choosing.</p><p>:::caution</p><p>This must be called before the file chooser is launched. It will not return a currently active file chooser.</p><p>:::</p> |
|
||||
| [waitForFrame(urlOrPredicate, options)](./puppeteer.page.waitforframe.md) | | |
|
||||
| [waitForFunction(pageFunction, options, args)](./puppeteer.page.waitforfunction.md) | | Waits for a function to finish evaluating in the page's context. |
|
||||
| [waitForNavigation(options)](./puppeteer.page.waitfornavigation.md) | | Waits for the page to navigate to a new URL or to reload. It is useful when you run code that will indirectly cause the page to navigate. |
|
||||
| [waitForNetworkIdle(options)](./puppeteer.page.waitfornetworkidle.md) | | |
|
||||
| [waitForRequest(urlOrPredicate, options)](./puppeteer.page.waitforrequest.md) | | |
|
||||
| [waitForResponse(urlOrPredicate, options)](./puppeteer.page.waitforresponse.md) | | |
|
||||
| [waitForSelector(selector, options)](./puppeteer.page.waitforselector.md) | | <p>Wait for the <code>selector</code> to appear in page. If at the moment of calling the method the <code>selector</code> already exists, the method will return immediately. If the <code>selector</code> doesn't appear after the <code>timeout</code> milliseconds of waiting, the function will throw.</p><p>This method works across navigations:</p> |
|
||||
|
||||
```ts
|
||||
const puppeteer = require('puppeteer');
|
||||
|
@ -4,6 +4,14 @@ sidebar_label: Page.setRequestInterception
|
||||
|
||||
# Page.setRequestInterception() method
|
||||
|
||||
Activating request interception enables [HTTPRequest.abort()](./puppeteer.httprequest.abort.md), [HTTPRequest.continue()](./puppeteer.httprequest.continue.md) and [HTTPRequest.respond()](./puppeteer.httprequest.respond.md) methods. This provides the capability to modify network requests that are made by a page.
|
||||
|
||||
Once request interception is enabled, every request will stall unless it's continued, responded or aborted; or completed using the browser cache.
|
||||
|
||||
NOTE: Enabling request interception disables page caching.
|
||||
|
||||
See the [Request interception guide](https://pptr.dev/next/guides/request-interception) for more details.
|
||||
|
||||
**Signature:**
|
||||
|
||||
```typescript
|
||||
@ -22,12 +30,6 @@ class Page {
|
||||
|
||||
Promise<void>
|
||||
|
||||
## Remarks
|
||||
|
||||
Activating request interception enables [HTTPRequest.abort()](./puppeteer.httprequest.abort.md), [HTTPRequest.continue()](./puppeteer.httprequest.continue.md) and [HTTPRequest.respond()](./puppeteer.httprequest.respond.md) methods. This provides the capability to modify network requests that are made by a page.
|
||||
|
||||
Once request interception is enabled, every request will stall unless it's continued, responded or aborted; or completed using the browser cache.
|
||||
|
||||
## Example
|
||||
|
||||
An example of a naïve request interceptor that aborts all image requests:
|
||||
@ -50,5 +52,3 @@ const puppeteer = require('puppeteer');
|
||||
await browser.close();
|
||||
})();
|
||||
```
|
||||
|
||||
NOTE: Enabling request interception disables page caching.
|
||||
|
6
docs/guides/index.md
Normal file
6
docs/guides/index.md
Normal file
@ -0,0 +1,6 @@
|
||||
---
|
||||
sidebar_label: Guides
|
||||
sidebar_position: 6
|
||||
---
|
||||
|
||||
- [Request interception](request-interception.md)
|
398
docs/guides/request-interception.md
Normal file
398
docs/guides/request-interception.md
Normal file
@ -0,0 +1,398 @@
|
||||
# Request interception
|
||||
|
||||
Once request interception is enabled, every request will stall unless it's continued, responded or aborted.
|
||||
|
||||
An example of a naïve request interceptor that aborts all image requests:
|
||||
|
||||
```js
|
||||
const puppeteer = require('puppeteer');
|
||||
|
||||
(async () => {
|
||||
const browser = await puppeteer.launch();
|
||||
const page = await browser.newPage();
|
||||
await page.setRequestInterception(true);
|
||||
page.on('request', interceptedRequest => {
|
||||
if (interceptedRequest.isInterceptResolutionHandled()) return;
|
||||
if (
|
||||
interceptedRequest.url().endsWith('.png') ||
|
||||
interceptedRequest.url().endsWith('.jpg')
|
||||
)
|
||||
interceptedRequest.abort();
|
||||
else interceptedRequest.continue();
|
||||
});
|
||||
await page.goto('https://example.com');
|
||||
await browser.close();
|
||||
})();
|
||||
```
|
||||
|
||||
## Multiple Intercept Handlers and Asynchronous Resolutions
|
||||
|
||||
By default Puppeteer will raise a `Request is already handled!` exception if `request.abort`, `request.continue`, or `request.respond` are called after any of them have already been called.
|
||||
|
||||
Always assume that an unknown handler may have already called `abort/continue/respond`. Even if your handler is the only one you registered,
|
||||
3rd party packages may register their own handlers. It is therefore
|
||||
important to always check the resolution status using [request.isInterceptResolutionHandled](#httprequestisinterceptresolutionhandled)
|
||||
before calling `abort/continue/respond`.
|
||||
|
||||
Importantly, the intercept resolution may get handled by another listener while your handler is awaiting an asynchronous operation. Therefore, the return value of `request.isInterceptResolutionHandled` is only safe in a synchronous code block. Always execute `request.isInterceptResolutionHandled` and `abort/continue/respond` **synchronously** together.
|
||||
|
||||
This example demonstrates two synchronous handlers working together:
|
||||
|
||||
```js
|
||||
/*
|
||||
This first handler will succeed in calling request.continue because the request interception has never been resolved.
|
||||
*/
|
||||
page.on('request', interceptedRequest => {
|
||||
if (interceptedRequest.isInterceptResolutionHandled()) return;
|
||||
interceptedRequest.continue();
|
||||
});
|
||||
|
||||
/*
|
||||
This second handler will return before calling request.abort because request.continue was already
|
||||
called by the first handler.
|
||||
*/
|
||||
page.on('request', interceptedRequest => {
|
||||
if (interceptedRequest.isInterceptResolutionHandled()) return;
|
||||
interceptedRequest.abort();
|
||||
});
|
||||
```
|
||||
|
||||
This example demonstrates asynchronous handlers working together:
|
||||
|
||||
```js
|
||||
/*
|
||||
This first handler will succeed in calling request.continue because the request interception has never been resolved.
|
||||
*/
|
||||
page.on('request', interceptedRequest => {
|
||||
// The interception has not been handled yet. Control will pass through this guard.
|
||||
if (interceptedRequest.isInterceptResolutionHandled()) return;
|
||||
|
||||
// It is not strictly necessary to return a promise, but doing so will allow Puppeteer to await this handler.
|
||||
return new Promise(resolve => {
|
||||
// Continue after 500ms
|
||||
setTimeout(() => {
|
||||
// Inside, check synchronously to verify that the intercept wasn't handled already.
|
||||
// It might have been handled during the 500ms while the other handler awaited an async op of its own.
|
||||
if (interceptedRequest.isInterceptResolutionHandled()) {
|
||||
resolve();
|
||||
return;
|
||||
}
|
||||
interceptedRequest.continue();
|
||||
resolve();
|
||||
}, 500);
|
||||
});
|
||||
});
|
||||
page.on('request', async interceptedRequest => {
|
||||
// The interception has not been handled yet. Control will pass through this guard.
|
||||
if (interceptedRequest.isInterceptResolutionHandled()) return;
|
||||
|
||||
await someLongAsyncOperation();
|
||||
// The interception *MIGHT* have been handled by the first handler, we can't be sure.
|
||||
// Therefore, we must check again before calling continue() or we risk Puppeteer raising an exception.
|
||||
if (interceptedRequest.isInterceptResolutionHandled()) return;
|
||||
interceptedRequest.continue();
|
||||
});
|
||||
```
|
||||
|
||||
For finer-grained introspection (see Cooperative Intercept Mode below), you may also call [request.interceptResolutionState](#httprequestinterceptresolutionstate) synchronously before using `abort/continue/respond`.
|
||||
|
||||
Here is the example above rewritten using `request.interceptResolutionState`
|
||||
|
||||
```js
|
||||
/*
|
||||
This first handler will succeed in calling request.continue because the request interception has never been resolved.
|
||||
*/
|
||||
page.on('request', interceptedRequest => {
|
||||
// The interception has not been handled yet. Control will pass through this guard.
|
||||
const {action} = interceptedRequest.interceptResolutionState();
|
||||
if (action === InterceptResolutionAction.AlreadyHandled) return;
|
||||
|
||||
// It is not strictly necessary to return a promise, but doing so will allow Puppeteer to await this handler.
|
||||
return new Promise(resolve => {
|
||||
// Continue after 500ms
|
||||
setTimeout(() => {
|
||||
// Inside, check synchronously to verify that the intercept wasn't handled already.
|
||||
// It might have been handled during the 500ms while the other handler awaited an async op of its own.
|
||||
const {action} = interceptedRequest.interceptResolutionState();
|
||||
if (action === InterceptResolutionAction.AlreadyHandled) {
|
||||
resolve();
|
||||
return;
|
||||
}
|
||||
interceptedRequest.continue();
|
||||
resolve();
|
||||
}, 500);
|
||||
});
|
||||
});
|
||||
page.on('request', async interceptedRequest => {
|
||||
// The interception has not been handled yet. Control will pass through this guard.
|
||||
if (
|
||||
interceptedRequest.interceptResolutionState().action ===
|
||||
InterceptResolutionAction.AlreadyHandled
|
||||
)
|
||||
return;
|
||||
|
||||
await someLongAsyncOperation();
|
||||
// The interception *MIGHT* have been handled by the first handler, we can't be sure.
|
||||
// Therefore, we must check again before calling continue() or we risk Puppeteer raising an exception.
|
||||
if (
|
||||
interceptedRequest.interceptResolutionState().action ===
|
||||
InterceptResolutionAction.AlreadyHandled
|
||||
)
|
||||
return;
|
||||
interceptedRequest.continue();
|
||||
});
|
||||
```
|
||||
|
||||
## Cooperative Intercept Mode
|
||||
|
||||
`request.abort`, `request.continue`, and `request.respond` can accept an optional `priority` to work in Cooperative Intercept Mode. When all
|
||||
handlers are using Cooperative Intercept Mode, Puppeteer guarantees that all intercept handlers will run and be awaited in order of registration. The interception is resolved to the highest-priority resolution. Here are the rules of Cooperative Intercept Mode:
|
||||
|
||||
- All resolutions must supply a numeric `priority` argument to `abort/continue/respond`.
|
||||
- If any resolution does not supply a numeric `priority`, Legacy Mode is active and Cooperative Intercept Mode is inactive.
|
||||
- Async handlers finish before intercept resolution is finalized.
|
||||
- The highest priority interception resolution "wins", i.e. the interception is ultimately aborted/responded/continued according to which resolution was given the highest priority.
|
||||
- In the event of a tie, `abort` > `respond` > `continue`.
|
||||
|
||||
For standardization, when specifying a Cooperative Intercept Mode priority use `0` or `DEFAULT_INTERCEPT_RESOLUTION_PRIORITY` (exported from `HTTPRequest`) unless you have a clear reason to use a higher priority. This gracefully prefers `respond` over `continue` and `abort` over `respond` and allows other handlers to work cooperatively. If you do intentionally want to use a different priority, higher priorities win over lower priorities. Negative priorities are allowed. For example, `continue({}, 4)` would win over `continue({}, -2)`.
|
||||
|
||||
To preserve backward compatibility, any handler resolving the intercept without specifying `priority` (Legacy Mode) causes immediate resolution. For Cooperative Intercept Mode to work, all resolutions must use a `priority`. In practice, this means you must still test for
|
||||
`request.isInterceptResolutionHandled` because a handler beyond your control may have called `abort/continue/respond` without a
|
||||
priority (Legacy Mode).
|
||||
|
||||
In this example, Legacy Mode prevails and the request is aborted immediately because at least one handler omits `priority` when resolving the intercept:
|
||||
|
||||
```ts
|
||||
// Final outcome: immediate abort()
|
||||
page.setRequestInterception(true);
|
||||
page.on('request', request => {
|
||||
if (request.isInterceptResolutionHandled()) return;
|
||||
|
||||
// Legacy Mode: interception is aborted immediately.
|
||||
request.abort('failed');
|
||||
});
|
||||
page.on('request', request => {
|
||||
if (request.isInterceptResolutionHandled()) return;
|
||||
// Control will never reach this point because the request was already aborted in Legacy Mode
|
||||
|
||||
// Cooperative Intercept Mode: votes for continue at priority 0.
|
||||
request.continue({}, 0);
|
||||
});
|
||||
```
|
||||
|
||||
In this example, Legacy Mode prevails and the request is continued because at least one handler does not specify a `priority`:
|
||||
|
||||
```ts
|
||||
// Final outcome: immediate continue()
|
||||
page.setRequestInterception(true);
|
||||
page.on('request', request => {
|
||||
if (request.isInterceptResolutionHandled()) return;
|
||||
|
||||
// Cooperative Intercept Mode: votes to abort at priority 0.
|
||||
request.abort('failed', 0);
|
||||
});
|
||||
page.on('request', request => {
|
||||
if (request.isInterceptResolutionHandled()) return;
|
||||
|
||||
// Control reaches this point because the request was cooperatively aborted which postpones resolution.
|
||||
|
||||
// { action: InterceptResolutionAction.Abort, priority: 0 }, because abort @ 0 is the current winning resolution
|
||||
console.log(request.interceptResolutionState());
|
||||
|
||||
// Legacy Mode: intercept continues immediately.
|
||||
request.continue({});
|
||||
});
|
||||
page.on('request', request => {
|
||||
// { action: InterceptResolutionAction.AlreadyHandled }, because continue in Legacy Mode was called
|
||||
console.log(request.interceptResolutionState());
|
||||
});
|
||||
```
|
||||
|
||||
In this example, Cooperative Intercept Mode is active because all handlers specify a `priority`. `continue()` wins because it has a higher priority than `abort()`.
|
||||
|
||||
```ts
|
||||
// Final outcome: cooperative continue() @ 5
|
||||
page.setRequestInterception(true);
|
||||
page.on('request', request => {
|
||||
if (request.isInterceptResolutionHandled()) return;
|
||||
|
||||
// Cooperative Intercept Mode: votes to abort at priority 10
|
||||
request.abort('failed', 0);
|
||||
});
|
||||
page.on('request', request => {
|
||||
if (request.isInterceptResolutionHandled()) return;
|
||||
|
||||
// Cooperative Intercept Mode: votes to continue at priority 5
|
||||
request.continue(request.continueRequestOverrides(), 5);
|
||||
});
|
||||
page.on('request', request => {
|
||||
// { action: InterceptResolutionAction.Continue, priority: 5 }, because continue @ 5 > abort @ 0
|
||||
console.log(request.interceptResolutionState());
|
||||
});
|
||||
```
|
||||
|
||||
In this example, Cooperative Intercept Mode is active because all handlers specify `priority`. `respond()` wins because its priority ties with `continue()`, but `respond()` beats `continue()`.
|
||||
|
||||
```ts
|
||||
// Final outcome: cooperative respond() @ 15
|
||||
page.setRequestInterception(true);
|
||||
page.on('request', request => {
|
||||
if (request.isInterceptResolutionHandled()) return;
|
||||
|
||||
// Cooperative Intercept Mode: votes to abort at priority 10
|
||||
request.abort('failed', 10);
|
||||
});
|
||||
page.on('request', request => {
|
||||
if (request.isInterceptResolutionHandled()) return;
|
||||
|
||||
// Cooperative Intercept Mode: votes to continue at priority 15
|
||||
request.continue(request.continueRequestOverrides(), 15);
|
||||
});
|
||||
page.on('request', request => {
|
||||
if (request.isInterceptResolutionHandled()) return;
|
||||
|
||||
// Cooperative Intercept Mode: votes to respond at priority 15
|
||||
request.respond(request.responseForRequest(), 15);
|
||||
});
|
||||
page.on('request', request => {
|
||||
if (request.isInterceptResolutionHandled()) return;
|
||||
|
||||
// Cooperative Intercept Mode: votes to respond at priority 12
|
||||
request.respond(request.responseForRequest(), 12);
|
||||
});
|
||||
page.on('request', request => {
|
||||
// { action: InterceptResolutionAction.Respond, priority: 15 }, because respond @ 15 > continue @ 15 > respond @ 12 > abort @ 10
|
||||
console.log(request.interceptResolutionState());
|
||||
});
|
||||
```
|
||||
|
||||
## Cooperative Request Continuation
|
||||
|
||||
Puppeteer requires `request.continue()` to be called explicitly or the request will hang. Even if
|
||||
your handler means to take no special action, or 'opt out', `request.continue()` must still be called.
|
||||
|
||||
With the introduction of Cooperative Intercept Mode, two use cases arise for cooperative request continuations:
|
||||
Unopinionated and Opinionated.
|
||||
|
||||
The first case (common) is that your handler means to opt out of doing anything special the request. It has no opinion on further action and simply intends to continue by default and/or defer to other handlers that might have an opinion. But in case there are no other handlers, we must call `request.continue()` to ensure that the request doesn't hang.
|
||||
|
||||
We call this an **Unopinionated continuation** because the intent is to continue the request if nobody else has a better idea. Use `request.continue({...}, DEFAULT_INTERCEPT_RESOLUTION_PRIORITY)` (or `0`) for this type of continuation.
|
||||
|
||||
The second case (uncommon) is that your handler actually does have an opinion and means to force continuation by overriding a lower-priority `abort()` or `respond()` issued elsewhere. We call this an **Opinionated continuation**. In these rare cases where you mean to specify an overriding continuation priority, use a custom priority.
|
||||
|
||||
To summarize, reason through whether your use of `request.continue` is just meant to be default/bypass behavior vs falling within the intended use case of your handler. Consider using a custom priority for in-scope use cases, and a default priority otherwise. Be aware that your handler may have both Opinionated and Unopinionated cases.
|
||||
|
||||
## Upgrading to Cooperative Intercept Mode for package maintainers
|
||||
|
||||
If you are package maintainer and your package uses intercept handlers, you can update your intercept handlers to use Cooperative Intercept Mode. Suppose you have the following existing handler:
|
||||
|
||||
```ts
|
||||
page.on('request', interceptedRequest => {
|
||||
if (request.isInterceptResolutionHandled()) return;
|
||||
if (
|
||||
interceptedRequest.url().endsWith('.png') ||
|
||||
interceptedRequest.url().endsWith('.jpg')
|
||||
)
|
||||
interceptedRequest.abort();
|
||||
else interceptedRequest.continue();
|
||||
});
|
||||
```
|
||||
|
||||
To use Cooperative Intercept Mode, upgrade `continue()` and `abort()`:
|
||||
|
||||
```ts
|
||||
page.on('request', interceptedRequest => {
|
||||
if (request.isInterceptResolutionHandled()) return;
|
||||
if (
|
||||
interceptedRequest.url().endsWith('.png') ||
|
||||
interceptedRequest.url().endsWith('.jpg')
|
||||
)
|
||||
interceptedRequest.abort('failed', 0);
|
||||
else
|
||||
interceptedRequest.continue(
|
||||
interceptedRequest.continueRequestOverrides(),
|
||||
0
|
||||
);
|
||||
});
|
||||
```
|
||||
|
||||
With those simple upgrades, your handler now uses Cooperative Intercept Mode instead.
|
||||
|
||||
However, we recommend a slightly more robust solution because the above introduces several subtle issues:
|
||||
|
||||
1. **Backward compatibility.** If any handler still uses a Legacy Mode resolution (ie, does not specify a priority), that handler will resolve the interception immediately even if your handler runs first. This could cause disconcerting behavior for your users because suddenly your handler is not resolving the interception and a different handler is taking priority when all the user did was upgrade your package.
|
||||
2. **Hard-coded priority.** Your package user has no ability to specify the default resolution priority for your handlers. This can become important when the user wishes to manipulate the priorities based on use case. For example, one user might want your package to take a high priority while another user might want it to take a low priority.
|
||||
|
||||
To resolve both of these issues, our recommended approach is to export a `setInterceptResolutionConfig()` from your package. The user can then call `setInterceptResolutionConfig()` to explicitly activate Cooperative Intercept Mode in your package so they aren't surprised by changes in how the interception is resolved. They can also optionally specify a custom priority using `setInterceptResolutionConfig(priority)` that works for their use case:
|
||||
|
||||
```ts
|
||||
// Defaults to undefined which preserves Legacy Mode behavior
|
||||
let _priority = undefined;
|
||||
|
||||
// Export a module configuration function
|
||||
export const setInterceptResolutionConfig = (priority = 0) =>
|
||||
(_priority = priority);
|
||||
|
||||
/**
|
||||
* Note that this handler uses `DEFAULT_INTERCEPT_RESOLUTION_PRIORITY` to "pass" on this request. It is important to use
|
||||
* the default priority when your handler has no opinion on the request and the intent is to continue() by default.
|
||||
*/
|
||||
page.on('request', interceptedRequest => {
|
||||
if (request.isInterceptResolutionHandled()) return;
|
||||
if (
|
||||
interceptedRequest.url().endsWith('.png') ||
|
||||
interceptedRequest.url().endsWith('.jpg')
|
||||
)
|
||||
interceptedRequest.abort('failed', _priority);
|
||||
else
|
||||
interceptedRequest.continue(
|
||||
interceptedRequest.continueRequestOverrides(),
|
||||
DEFAULT_INTERCEPT_RESOLUTION_PRIORITY // Unopinionated continuation
|
||||
);
|
||||
});
|
||||
```
|
||||
|
||||
If your package calls for more fine-grained control over resolution priorities, use a config pattern like this:
|
||||
|
||||
```ts
|
||||
interface InterceptResolutionConfig {
|
||||
abortPriority?: number;
|
||||
continuePriority?: number;
|
||||
}
|
||||
|
||||
// This approach supports multiple priorities based on situational
|
||||
// differences. You could, for example, create a config that
|
||||
// allowed separate priorities for PNG vs JPG.
|
||||
const DEFAULT_CONFIG: InterceptResolutionConfig = {
|
||||
abortPriority: undefined, // Default to Legacy Mode
|
||||
continuePriority: undefined, // Default to Legacy Mode
|
||||
};
|
||||
|
||||
// Defaults to undefined which preserves Legacy Mode behavior
|
||||
let _config: Partial<InterceptResolutionConfig> = {};
|
||||
|
||||
export const setInterceptResolutionConfig = (
|
||||
config: InterceptResolutionConfig
|
||||
) => (_config = {...DEFAULT_CONFIG, ...config});
|
||||
|
||||
page.on('request', interceptedRequest => {
|
||||
if (request.isInterceptResolutionHandled()) return;
|
||||
if (
|
||||
interceptedRequest.url().endsWith('.png') ||
|
||||
interceptedRequest.url().endsWith('.jpg')
|
||||
) {
|
||||
interceptedRequest.abort('failed', _config.abortPriority);
|
||||
} else {
|
||||
// Here we use a custom-configured priority to allow for Opinionated
|
||||
// continuation.
|
||||
// We would only want to allow this if we had a very clear reason why
|
||||
// some use cases required Opinionated continuation.
|
||||
interceptedRequest.continue(
|
||||
interceptedRequest.continueRequestOverrides(),
|
||||
_config.continuePriority // Why would we ever want priority!==0 here?
|
||||
);
|
||||
}
|
||||
});
|
||||
```
|
||||
|
||||
The above solutions ensure backward compatibility while also allowing the user to adjust the importance of your package in the resolution chain when Cooperative Intercept Mode is being used. Your package continues to work as expected until the user has fully upgraded their code and all third party packages to use Cooperative Intercept Mode. If any handler or package still uses Legacy Mode, your package can still operate in Legacy Mode too.
|
@ -906,9 +906,6 @@ export class Page extends EventEmitter {
|
||||
}
|
||||
|
||||
/**
|
||||
* @param value - Whether to enable request interception.
|
||||
*
|
||||
* @remarks
|
||||
* Activating request interception enables {@link HTTPRequest.abort},
|
||||
* {@link HTTPRequest.continue} and {@link HTTPRequest.respond} methods. This
|
||||
* provides the capability to modify network requests that are made by a page.
|
||||
@ -916,6 +913,10 @@ export class Page extends EventEmitter {
|
||||
* Once request interception is enabled, every request will stall unless it's
|
||||
* continued, responded or aborted; or completed using the browser cache.
|
||||
*
|
||||
* NOTE: Enabling request interception disables page caching.
|
||||
*
|
||||
* See the {@link https://pptr.dev/next/guides/request-interception|Request interception guide} for more details.
|
||||
*
|
||||
* @example
|
||||
* An example of a naïve request interceptor that aborts all image requests:
|
||||
* ```ts
|
||||
@ -935,7 +936,8 @@ export class Page extends EventEmitter {
|
||||
* await browser.close();
|
||||
* })();
|
||||
* ```
|
||||
* NOTE: Enabling request interception disables page caching.
|
||||
*
|
||||
* @param value - Whether to enable request interception.
|
||||
*/
|
||||
async setRequestInterception(value: boolean): Promise<void> {
|
||||
return this.#frameManager.networkManager().setRequestInterception(value);
|
||||
|
@ -123,6 +123,7 @@ export class MarkdownDocumenter {
|
||||
outputFolder: this._outputFolder,
|
||||
documenter: new MarkdownDocumenterAccessor({
|
||||
getLinkForApiItem: (apiItem: ApiItem) => {
|
||||
console.log(apiItem);
|
||||
return this._getLinkFilenameForApiItem(apiItem);
|
||||
},
|
||||
}),
|
||||
|
@ -53,9 +53,11 @@ const config = {
|
||||
const apiCategoryItem = sidebarItems.find(value => {
|
||||
return value.type === 'category';
|
||||
});
|
||||
if (apiCategoryItem && apiCategoryItem.type === 'category') {
|
||||
apiCategoryItem.label = 'API';
|
||||
|
||||
if (
|
||||
apiCategoryItem &&
|
||||
apiCategoryItem.type === 'category' &&
|
||||
apiCategoryItem.label === 'API'
|
||||
) {
|
||||
/** @type {typeof sidebarItems} */
|
||||
const newItems = [];
|
||||
for (const item of apiCategoryItem.items.sort((a, b) => {
|
||||
|
Loading…
Reference in New Issue
Block a user