Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: improve ignorehttpserrors description #9081

Merged
merged 2 commits into from
Sep 22, 2021
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/src/api/params.md
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ Whether to automatically download all the attachments. Defaults to `false` where
## context-option-ignorehttpserrors
- `ignoreHTTPSErrors` <[boolean]>

Whether to ignore HTTPS errors during navigation. Defaults to `false`.
Whether to ignore HTTPS errors when sending network requests. Defaults to `false`.

## context-option-bypasscsp
- `bypassCSP` <[boolean]>
Expand Down
2 changes: 1 addition & 1 deletion types/test.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2479,7 +2479,7 @@ export interface PlaywrightTestOptions {
*/
httpCredentials: HTTPCredentials | undefined;
/**
* Whether to ignore HTTPS errors during navigation. Defaults to `false`.
* Whether to ignore HTTPS errors when sending network requests. Defaults to `false`.
*/
ignoreHTTPSErrors: boolean | undefined;
/**
Expand Down
10 changes: 5 additions & 5 deletions types/types.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9813,7 +9813,7 @@ export interface BrowserType<Unused = {}> {
ignoreDefaultArgs?: boolean|Array<string>;

/**
* Whether to ignore HTTPS errors during navigation. Defaults to `false`.
* Whether to ignore HTTPS errors when sending network requests. Defaults to `false`.
*/
ignoreHTTPSErrors?: boolean;

Expand Down Expand Up @@ -10979,7 +10979,7 @@ export interface AndroidDevice {
};

/**
* Whether to ignore HTTPS errors during navigation. Defaults to `false`.
* Whether to ignore HTTPS errors when sending network requests. Defaults to `false`.
*/
ignoreHTTPSErrors?: boolean;

Expand Down Expand Up @@ -11755,7 +11755,7 @@ export interface Browser extends EventEmitter {
};

/**
* Whether to ignore HTTPS errors during navigation. Defaults to `false`.
* Whether to ignore HTTPS errors when sending network requests. Defaults to `false`.
*/
ignoreHTTPSErrors?: boolean;

Expand Down Expand Up @@ -12547,7 +12547,7 @@ export interface Electron {
};

/**
* Whether to ignore HTTPS errors during navigation. Defaults to `false`.
* Whether to ignore HTTPS errors when sending network requests. Defaults to `false`.
*/
ignoreHTTPSErrors?: boolean;

Expand Down Expand Up @@ -14242,7 +14242,7 @@ export interface BrowserContextOptions {
httpCredentials?: HTTPCredentials;

/**
* Whether to ignore HTTPS errors during navigation. Defaults to `false`.
* Whether to ignore HTTPS errors when sending network requests. Defaults to `false`.
*/
ignoreHTTPSErrors?: boolean;

Expand Down