docs: update strict routeFromHar default value (#14886)

This commit is contained in:
Yury Semikhatsky 2022-06-15 09:32:40 -07:00 коммит произвёл GitHub
Родитель 464cbb7457
Коммит df63ae9dce
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
3 изменённых файлов: 4 добавлений и 4 удалений

Просмотреть файл

@ -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]>

Просмотреть файл

@ -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]>

4
packages/playwright-core/types/types.d.ts поставляемый
Просмотреть файл

@ -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;