docs: update strict routeFromHar default value (#14886)

This commit is contained in:
Yury Semikhatsky 2022-06-15 09:32:40 -07:00 committed by GitHub
parent 464cbb7457
commit df63ae9dce
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 4 deletions

View file

@ -1045,7 +1045,7 @@ If `path` is a relative path, then it is resolved relative to the current workin
If set to true any request not found in the HAR file will be aborted. If set to
false missing requests will continue normal flow and can be handled by other
[Route] handlers or served from other HAR files configured with [`method: BrowserContext.routeFromHar`].
Defaults to false.
Defaults to true.
### option: BrowserContext.routeFromHar.url
- `url` <[string]|[RegExp]>

View file

@ -2752,7 +2752,7 @@ If `path` is a relative path, then it is resolved relative to the current workin
If set to true any request not found in the HAR file will be aborted. If set to
false missing requests will continue normal flow and can be handled by other
[Route] handlers or served from other HAR files configured with [`method: Page.routeFromHar`].
Defaults to false.
Defaults to true.
### option: Page.routeFromHar.url
- `url` <[string]|[RegExp]>

View file

@ -2985,7 +2985,7 @@ export interface Page {
* If set to true any request not found in the HAR file will be aborted. If set to false missing requests will continue
* normal flow and can be handled by other [Route] handlers or served from other HAR files configured with
* [page.routeFromHar(harPath[, options])](https://playwright.dev/docs/api/class-page#page-route-from-har). Defaults to
* false.
* true.
*/
strict?: boolean;
@ -6859,7 +6859,7 @@ export interface BrowserContext {
* If set to true any request not found in the HAR file will be aborted. If set to false missing requests will continue
* normal flow and can be handled by other [Route] handlers or served from other HAR files configured with
* [browserContext.routeFromHar(harPath[, options])](https://playwright.dev/docs/api/class-browsercontext#browser-context-route-from-har).
* Defaults to false.
* Defaults to true.
*/
strict?: boolean;