Skip to content

Commit

Permalink
feat(roll): roll to ToT Playwright (03-09-24)
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Sep 3, 2024
1 parent 06279bf commit 2b350d1
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion dotnet/docs/api/class-apiresponse.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ ApiResponse.Headers

<font size="2" style={{position: "relative", top: "-20px"}}>Added in: v1.16</font><x-search>apiResponse.HeadersArray</x-search>

An array with all the request HTTP headers associated with this response. Header names are not lower-cased. Headers with multiple entries, such as `Set-Cookie`, appear in the array multiple times.
An array with all the response HTTP headers associated with this response. Header names are not lower-cased. Headers with multiple entries, such as `Set-Cookie`, appear in the array multiple times.

**Usage**

Expand Down
2 changes: 1 addition & 1 deletion java/docs/api/class-apiresponse.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ APIResponse.headers();

<font size="2" style={{position: "relative", top: "-20px"}}>Added in: v1.16</font><x-search>apiResponse.headersArray</x-search>

An array with all the request HTTP headers associated with this response. Header names are not lower-cased. Headers with multiple entries, such as `Set-Cookie`, appear in the array multiple times.
An array with all the response HTTP headers associated with this response. Header names are not lower-cased. Headers with multiple entries, such as `Set-Cookie`, appear in the array multiple times.

**Usage**

Expand Down
4 changes: 2 additions & 2 deletions java/docs/mock.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ Setting `update` option to true will create or update the HAR file with the actu

```java
// Get the response from the HAR file
page.routeFromHAR("./hars/fruit.har", new RouteFromHAROptions()
page.routeFromHAR(Path.of("./hars/fruit.har"), new RouteFromHAROptions()
.setUrl("*/**/api/v1/fruits")
.setUpdate(true)
);
Expand Down Expand Up @@ -116,7 +116,7 @@ Now that you have the HAR file recorded and modified the mock data, it can be us
// Replay API requests from HAR.
// Either use a matching response from the HAR,
// or abort the request if nothing matches.
page.routeFromHAR("./hars/fruit.har", new RouteFromHAROptions()
page.routeFromHAR(Path.of("./hars/fruit.har"), new RouteFromHAROptions()
.setUrl("*/**/api/v1/fruits")
.setUpdate(false)
);
Expand Down
2 changes: 1 addition & 1 deletion nodejs/docs/api/class-apiresponse.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ apiResponse.headers();

<font size="2" style={{position: "relative", top: "-20px"}}>Added in: v1.16</font><x-search>apiResponse.headersArray</x-search>

An array with all the request HTTP headers associated with this response. Header names are not lower-cased. Headers with multiple entries, such as `Set-Cookie`, appear in the array multiple times.
An array with all the response HTTP headers associated with this response. Header names are not lower-cased. Headers with multiple entries, such as `Set-Cookie`, appear in the array multiple times.

**Usage**

Expand Down
2 changes: 1 addition & 1 deletion python/docs/api/class-apiresponse.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ api_response.headers

<font size="2" style={{position: "relative", top: "-20px"}}>Added in: v1.16</font><x-search>apiResponse.headers_array</x-search>

An array with all the request HTTP headers associated with this response. Header names are not lower-cased. Headers with multiple entries, such as `Set-Cookie`, appear in the array multiple times.
An array with all the response HTTP headers associated with this response. Header names are not lower-cased. Headers with multiple entries, such as `Set-Cookie`, appear in the array multiple times.

**Usage**

Expand Down

0 comments on commit 2b350d1

Please sign in to comment.