Skip to content

Commit

Permalink
feat(roll): roll to ToT Playwright (06-09-24) (#1498)
Browse files Browse the repository at this point in the history
  • Loading branch information
playwrightmachine authored Sep 6, 2024
1 parent 836ebbc commit 662a6f0
Show file tree
Hide file tree
Showing 141 changed files with 757 additions and 45 deletions.
6 changes: 3 additions & 3 deletions dotnet/docs/api/class-pageassertions.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ Ensures the page has the given title.
**Usage**

```csharp
await Expect(Page).ToHaveTitle("Playwright");
await Expect(Page).ToHaveTitleAsync("Playwright");
```

**Arguments**
Expand All @@ -68,7 +68,7 @@ Ensures the page is navigated to the given URL.
**Usage**

```csharp
await Expect(Page).ToHaveURL(new Regex(".*checkout"));
await Expect(Page).ToHaveURLAsync(new Regex(".*checkout"));
```

**Arguments**
Expand Down Expand Up @@ -97,7 +97,7 @@ await Expect(Page).ToHaveURL(new Regex(".*checkout"));
Makes the assertion check for the opposite condition. For example, this code tests that the page URL doesn't contain `"error"`:

```csharp
await Expect(Page).Not.ToHaveURL("error");
await Expect(Page).Not.ToHaveURLAsync("error");
```

**Usage**
Expand Down
11 changes: 5 additions & 6 deletions dotnet/docs/release-notes.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -11,22 +11,21 @@ import HTMLCard from '@site/src/components/HTMLCard';

### Network Tab improvements

The Network tab in the trace viewer now allows searching and filtering by asset type:
The Network tab in the trace viewer has several nice improvements:
- filtering by asset type and URL
- better display of query string parameters
- preview of font assets

![Network tab now has filters](https://github.com/user-attachments/assets/4bd1b67d-90bd-438b-a227-00b9e86872e2)

And for fonts, it now shows a nice preview:

![Font requests have a preview now](https://github.com/user-attachments/assets/769d64cc-cdcb-421d-9849-227d2f874d1f)

### Miscellaneous
- The `mcr.microsoft.com/playwright-dotnet:v1.47.0` now serves a Playwright image based on Ubuntu 24.04 Noble. To use the 22.04 jammy-based image, please use `mcr.microsoft.com/playwright-dotnet:v1.47.0-jammy` instead.
- TLS client certificates can now be passed from memory by passing `cert` and `key` as byte arrays instead of file paths.
- `noWaitAfter` in [Locator.SelectOptionAsync()](/api/class-locator.mdx#locator-select-option) was deprecated.
- We've seen reports of WebGL in Webkit misbehaving on GitHub Actions `macos-13`. We recommend upgrading GitHub Actions to `macos-14`.

### Browser Versions
- Chromium 129.0.6668.22
- Chromium 129.0.6668.29
- Mozilla Firefox 130.0
- WebKit 18.0

Expand Down
11 changes: 5 additions & 6 deletions java/docs/release-notes.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -11,22 +11,21 @@ import HTMLCard from '@site/src/components/HTMLCard';

### Network Tab improvements

The Network tab in the trace viewer now allows searching and filtering by asset type:
The Network tab in the trace viewer has several nice improvements:
- filtering by asset type and URL
- better display of query string parameters
- preview of font assets

![Network tab now has filters](https://github.com/user-attachments/assets/4bd1b67d-90bd-438b-a227-00b9e86872e2)

And for fonts, it now shows a nice preview:

![Font requests have a preview now](https://github.com/user-attachments/assets/769d64cc-cdcb-421d-9849-227d2f874d1f)

### Miscellaneous
- The `mcr.microsoft.com/playwright-java:v1.47.0` now serves a Playwright image based on Ubuntu 24.04 Noble. To use the 22.02 jammy-based image, please use `mcr.microsoft.com/playwright-java:v1.47.0-jammy` instead.
- TLS client certificates can now be passed from memory by passing `cert` and `key` as byte arrays instead of file paths.
- `noWaitAfter` in [Locator.selectOption()](/api/class-locator.mdx#locator-select-option) was deprecated.
- We've seen reports of WebGL in Webkit misbehaving on GitHub Actions `macos-13`. We recommend upgrading GitHub Actions to `macos-14`.

### Browser Versions
- Chromium 129.0.6668.22
- Chromium 129.0.6668.29
- Mozilla Firefox 130.0
- WebKit 18.0

Expand Down
2 changes: 2 additions & 0 deletions nodejs/docs/accessibility-testing.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -386,6 +386,7 @@ test('example using custom fixture', async ({ page, makeAxeBuilder }) => {
[Test]: /api/class-test.mdx "Test"
[TestConfig]: /api/class-testconfig.mdx "TestConfig"
[TestInfo]: /api/class-testinfo.mdx "TestInfo"
[TestInfoErrorMatcherResult]: /api/class-testinfoerrormatcherresult.mdx "TestInfoErrorMatcherResult"
[TestInfoError]: /api/class-testinfoerror.mdx "TestInfoError"
[TestOptions]: /api/class-testoptions.mdx "TestOptions"
[TestProject]: /api/class-testproject.mdx "TestProject"
Expand All @@ -394,6 +395,7 @@ test('example using custom fixture', async ({ page, makeAxeBuilder }) => {
[Reporter]: /api/class-reporter.mdx "Reporter"
[Suite]: /api/class-suite.mdx "Suite"
[TestCase]: /api/class-testcase.mdx "TestCase"
[TestErrorMatcherResult]: /api/class-testerrormatcherresult.mdx "TestErrorMatcherResult"
[TestError]: /api/class-testerror.mdx "TestError"
[TestResult]: /api/class-testresult.mdx "TestResult"
[TestStep]: /api/class-teststep.mdx "TestStep"
Expand Down
2 changes: 2 additions & 0 deletions nodejs/docs/actionability.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,7 @@ For example, consider a scenario where Playwright will click `Sign Up` button re
[Test]: /api/class-test.mdx "Test"
[TestConfig]: /api/class-testconfig.mdx "TestConfig"
[TestInfo]: /api/class-testinfo.mdx "TestInfo"
[TestInfoErrorMatcherResult]: /api/class-testinfoerrormatcherresult.mdx "TestInfoErrorMatcherResult"
[TestInfoError]: /api/class-testinfoerror.mdx "TestInfoError"
[TestOptions]: /api/class-testoptions.mdx "TestOptions"
[TestProject]: /api/class-testproject.mdx "TestProject"
Expand All @@ -177,6 +178,7 @@ For example, consider a scenario where Playwright will click `Sign Up` button re
[Reporter]: /api/class-reporter.mdx "Reporter"
[Suite]: /api/class-suite.mdx "Suite"
[TestCase]: /api/class-testcase.mdx "TestCase"
[TestErrorMatcherResult]: /api/class-testerrormatcherresult.mdx "TestErrorMatcherResult"
[TestError]: /api/class-testerror.mdx "TestError"
[TestResult]: /api/class-testresult.mdx "TestResult"
[TestStep]: /api/class-teststep.mdx "TestStep"
Expand Down
2 changes: 2 additions & 0 deletions nodejs/docs/api-testing.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -429,6 +429,7 @@ test('global context request has isolated cookie storage', async ({
[Test]: /api/class-test.mdx "Test"
[TestConfig]: /api/class-testconfig.mdx "TestConfig"
[TestInfo]: /api/class-testinfo.mdx "TestInfo"
[TestInfoErrorMatcherResult]: /api/class-testinfoerrormatcherresult.mdx "TestInfoErrorMatcherResult"
[TestInfoError]: /api/class-testinfoerror.mdx "TestInfoError"
[TestOptions]: /api/class-testoptions.mdx "TestOptions"
[TestProject]: /api/class-testproject.mdx "TestProject"
Expand All @@ -437,6 +438,7 @@ test('global context request has isolated cookie storage', async ({
[Reporter]: /api/class-reporter.mdx "Reporter"
[Suite]: /api/class-suite.mdx "Suite"
[TestCase]: /api/class-testcase.mdx "TestCase"
[TestErrorMatcherResult]: /api/class-testerrormatcherresult.mdx "TestErrorMatcherResult"
[TestError]: /api/class-testerror.mdx "TestError"
[TestResult]: /api/class-testresult.mdx "TestResult"
[TestStep]: /api/class-teststep.mdx "TestStep"
Expand Down
2 changes: 2 additions & 0 deletions nodejs/docs/api/class-accessibility.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -211,6 +211,7 @@ function findFocusedNode(node) {
[Test]: /api/class-test.mdx "Test"
[TestConfig]: /api/class-testconfig.mdx "TestConfig"
[TestInfo]: /api/class-testinfo.mdx "TestInfo"
[TestInfoErrorMatcherResult]: /api/class-testinfoerrormatcherresult.mdx "TestInfoErrorMatcherResult"
[TestInfoError]: /api/class-testinfoerror.mdx "TestInfoError"
[TestOptions]: /api/class-testoptions.mdx "TestOptions"
[TestProject]: /api/class-testproject.mdx "TestProject"
Expand All @@ -219,6 +220,7 @@ function findFocusedNode(node) {
[Reporter]: /api/class-reporter.mdx "Reporter"
[Suite]: /api/class-suite.mdx "Suite"
[TestCase]: /api/class-testcase.mdx "TestCase"
[TestErrorMatcherResult]: /api/class-testerrormatcherresult.mdx "TestErrorMatcherResult"
[TestError]: /api/class-testerror.mdx "TestError"
[TestResult]: /api/class-testresult.mdx "TestResult"
[TestStep]: /api/class-teststep.mdx "TestStep"
Expand Down
2 changes: 2 additions & 0 deletions nodejs/docs/api/class-android.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -298,6 +298,7 @@ android.setDefaultTimeout(timeout);
[Test]: /api/class-test.mdx "Test"
[TestConfig]: /api/class-testconfig.mdx "TestConfig"
[TestInfo]: /api/class-testinfo.mdx "TestInfo"
[TestInfoErrorMatcherResult]: /api/class-testinfoerrormatcherresult.mdx "TestInfoErrorMatcherResult"
[TestInfoError]: /api/class-testinfoerror.mdx "TestInfoError"
[TestOptions]: /api/class-testoptions.mdx "TestOptions"
[TestProject]: /api/class-testproject.mdx "TestProject"
Expand All @@ -306,6 +307,7 @@ android.setDefaultTimeout(timeout);
[Reporter]: /api/class-reporter.mdx "Reporter"
[Suite]: /api/class-suite.mdx "Suite"
[TestCase]: /api/class-testcase.mdx "TestCase"
[TestErrorMatcherResult]: /api/class-testerrormatcherresult.mdx "TestErrorMatcherResult"
[TestError]: /api/class-testerror.mdx "TestError"
[TestResult]: /api/class-testresult.mdx "TestResult"
[TestStep]: /api/class-teststep.mdx "TestStep"
Expand Down
2 changes: 2 additions & 0 deletions nodejs/docs/api/class-androiddevice.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -983,6 +983,7 @@ androidDevice.on('webview', data => {});
[Test]: /api/class-test.mdx "Test"
[TestConfig]: /api/class-testconfig.mdx "TestConfig"
[TestInfo]: /api/class-testinfo.mdx "TestInfo"
[TestInfoErrorMatcherResult]: /api/class-testinfoerrormatcherresult.mdx "TestInfoErrorMatcherResult"
[TestInfoError]: /api/class-testinfoerror.mdx "TestInfoError"
[TestOptions]: /api/class-testoptions.mdx "TestOptions"
[TestProject]: /api/class-testproject.mdx "TestProject"
Expand All @@ -991,6 +992,7 @@ androidDevice.on('webview', data => {});
[Reporter]: /api/class-reporter.mdx "Reporter"
[Suite]: /api/class-suite.mdx "Suite"
[TestCase]: /api/class-testcase.mdx "TestCase"
[TestErrorMatcherResult]: /api/class-testerrormatcherresult.mdx "TestErrorMatcherResult"
[TestError]: /api/class-testerror.mdx "TestError"
[TestResult]: /api/class-testresult.mdx "TestResult"
[TestStep]: /api/class-teststep.mdx "TestStep"
Expand Down
2 changes: 2 additions & 0 deletions nodejs/docs/api/class-androidinput.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -213,6 +213,7 @@ await androidInput.type(text);
[Test]: /api/class-test.mdx "Test"
[TestConfig]: /api/class-testconfig.mdx "TestConfig"
[TestInfo]: /api/class-testinfo.mdx "TestInfo"
[TestInfoErrorMatcherResult]: /api/class-testinfoerrormatcherresult.mdx "TestInfoErrorMatcherResult"
[TestInfoError]: /api/class-testinfoerror.mdx "TestInfoError"
[TestOptions]: /api/class-testoptions.mdx "TestOptions"
[TestProject]: /api/class-testproject.mdx "TestProject"
Expand All @@ -221,6 +222,7 @@ await androidInput.type(text);
[Reporter]: /api/class-reporter.mdx "Reporter"
[Suite]: /api/class-suite.mdx "Suite"
[TestCase]: /api/class-testcase.mdx "TestCase"
[TestErrorMatcherResult]: /api/class-testerrormatcherresult.mdx "TestErrorMatcherResult"
[TestError]: /api/class-testerror.mdx "TestError"
[TestResult]: /api/class-testresult.mdx "TestResult"
[TestStep]: /api/class-teststep.mdx "TestStep"
Expand Down
2 changes: 2 additions & 0 deletions nodejs/docs/api/class-androidsocket.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,7 @@ androidSocket.on('data', data => {});
[Test]: /api/class-test.mdx "Test"
[TestConfig]: /api/class-testconfig.mdx "TestConfig"
[TestInfo]: /api/class-testinfo.mdx "TestInfo"
[TestInfoErrorMatcherResult]: /api/class-testinfoerrormatcherresult.mdx "TestInfoErrorMatcherResult"
[TestInfoError]: /api/class-testinfoerror.mdx "TestInfoError"
[TestOptions]: /api/class-testoptions.mdx "TestOptions"
[TestProject]: /api/class-testproject.mdx "TestProject"
Expand All @@ -148,6 +149,7 @@ androidSocket.on('data', data => {});
[Reporter]: /api/class-reporter.mdx "Reporter"
[Suite]: /api/class-suite.mdx "Suite"
[TestCase]: /api/class-testcase.mdx "TestCase"
[TestErrorMatcherResult]: /api/class-testerrormatcherresult.mdx "TestErrorMatcherResult"
[TestError]: /api/class-testerror.mdx "TestError"
[TestResult]: /api/class-testresult.mdx "TestResult"
[TestStep]: /api/class-teststep.mdx "TestStep"
Expand Down
2 changes: 2 additions & 0 deletions nodejs/docs/api/class-androidwebview.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,7 @@ androidWebView.on('close', data => {});
[Test]: /api/class-test.mdx "Test"
[TestConfig]: /api/class-testconfig.mdx "TestConfig"
[TestInfo]: /api/class-testinfo.mdx "TestInfo"
[TestInfoErrorMatcherResult]: /api/class-testinfoerrormatcherresult.mdx "TestInfoErrorMatcherResult"
[TestInfoError]: /api/class-testinfoerror.mdx "TestInfoError"
[TestOptions]: /api/class-testoptions.mdx "TestOptions"
[TestProject]: /api/class-testproject.mdx "TestProject"
Expand All @@ -143,6 +144,7 @@ androidWebView.on('close', data => {});
[Reporter]: /api/class-reporter.mdx "Reporter"
[Suite]: /api/class-suite.mdx "Suite"
[TestCase]: /api/class-testcase.mdx "TestCase"
[TestErrorMatcherResult]: /api/class-testerrormatcherresult.mdx "TestErrorMatcherResult"
[TestError]: /api/class-testerror.mdx "TestError"
[TestResult]: /api/class-testresult.mdx "TestResult"
[TestStep]: /api/class-teststep.mdx "TestStep"
Expand Down
2 changes: 2 additions & 0 deletions nodejs/docs/api/class-apirequest.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -218,6 +218,7 @@ await apiRequest.newContext(options);
[Test]: /api/class-test.mdx "Test"
[TestConfig]: /api/class-testconfig.mdx "TestConfig"
[TestInfo]: /api/class-testinfo.mdx "TestInfo"
[TestInfoErrorMatcherResult]: /api/class-testinfoerrormatcherresult.mdx "TestInfoErrorMatcherResult"
[TestInfoError]: /api/class-testinfoerror.mdx "TestInfoError"
[TestOptions]: /api/class-testoptions.mdx "TestOptions"
[TestProject]: /api/class-testproject.mdx "TestProject"
Expand All @@ -226,6 +227,7 @@ await apiRequest.newContext(options);
[Reporter]: /api/class-reporter.mdx "Reporter"
[Suite]: /api/class-suite.mdx "Suite"
[TestCase]: /api/class-testcase.mdx "TestCase"
[TestErrorMatcherResult]: /api/class-testerrormatcherresult.mdx "TestErrorMatcherResult"
[TestError]: /api/class-testerror.mdx "TestError"
[TestResult]: /api/class-testresult.mdx "TestResult"
[TestStep]: /api/class-teststep.mdx "TestStep"
Expand Down
2 changes: 2 additions & 0 deletions nodejs/docs/api/class-apirequestcontext.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -677,6 +677,7 @@ await apiRequestContext.storageState(options);
[Test]: /api/class-test.mdx "Test"
[TestConfig]: /api/class-testconfig.mdx "TestConfig"
[TestInfo]: /api/class-testinfo.mdx "TestInfo"
[TestInfoErrorMatcherResult]: /api/class-testinfoerrormatcherresult.mdx "TestInfoErrorMatcherResult"
[TestInfoError]: /api/class-testinfoerror.mdx "TestInfoError"
[TestOptions]: /api/class-testoptions.mdx "TestOptions"
[TestProject]: /api/class-testproject.mdx "TestProject"
Expand All @@ -685,6 +686,7 @@ await apiRequestContext.storageState(options);
[Reporter]: /api/class-reporter.mdx "Reporter"
[Suite]: /api/class-suite.mdx "Suite"
[TestCase]: /api/class-testcase.mdx "TestCase"
[TestErrorMatcherResult]: /api/class-testerrormatcherresult.mdx "TestErrorMatcherResult"
[TestError]: /api/class-testerror.mdx "TestError"
[TestResult]: /api/class-testresult.mdx "TestResult"
[TestStep]: /api/class-teststep.mdx "TestStep"
Expand Down
2 changes: 2 additions & 0 deletions nodejs/docs/api/class-apiresponse.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -246,6 +246,7 @@ apiResponse.url();
[Test]: /api/class-test.mdx "Test"
[TestConfig]: /api/class-testconfig.mdx "TestConfig"
[TestInfo]: /api/class-testinfo.mdx "TestInfo"
[TestInfoErrorMatcherResult]: /api/class-testinfoerrormatcherresult.mdx "TestInfoErrorMatcherResult"
[TestInfoError]: /api/class-testinfoerror.mdx "TestInfoError"
[TestOptions]: /api/class-testoptions.mdx "TestOptions"
[TestProject]: /api/class-testproject.mdx "TestProject"
Expand All @@ -254,6 +255,7 @@ apiResponse.url();
[Reporter]: /api/class-reporter.mdx "Reporter"
[Suite]: /api/class-suite.mdx "Suite"
[TestCase]: /api/class-testcase.mdx "TestCase"
[TestErrorMatcherResult]: /api/class-testerrormatcherresult.mdx "TestErrorMatcherResult"
[TestError]: /api/class-testerror.mdx "TestError"
[TestResult]: /api/class-testresult.mdx "TestResult"
[TestStep]: /api/class-teststep.mdx "TestStep"
Expand Down
2 changes: 2 additions & 0 deletions nodejs/docs/api/class-apiresponseassertions.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,7 @@ expect(response).not
[Test]: /api/class-test.mdx "Test"
[TestConfig]: /api/class-testconfig.mdx "TestConfig"
[TestInfo]: /api/class-testinfo.mdx "TestInfo"
[TestInfoErrorMatcherResult]: /api/class-testinfoerrormatcherresult.mdx "TestInfoErrorMatcherResult"
[TestInfoError]: /api/class-testinfoerror.mdx "TestInfoError"
[TestOptions]: /api/class-testoptions.mdx "TestOptions"
[TestProject]: /api/class-testproject.mdx "TestProject"
Expand All @@ -126,6 +127,7 @@ expect(response).not
[Reporter]: /api/class-reporter.mdx "Reporter"
[Suite]: /api/class-suite.mdx "Suite"
[TestCase]: /api/class-testcase.mdx "TestCase"
[TestErrorMatcherResult]: /api/class-testerrormatcherresult.mdx "TestErrorMatcherResult"
[TestError]: /api/class-testerror.mdx "TestError"
[TestResult]: /api/class-testresult.mdx "TestResult"
[TestStep]: /api/class-teststep.mdx "TestStep"
Expand Down
2 changes: 2 additions & 0 deletions nodejs/docs/api/class-browser.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -896,6 +896,7 @@ browser.on('disconnected', data => {});
[Test]: /api/class-test.mdx "Test"
[TestConfig]: /api/class-testconfig.mdx "TestConfig"
[TestInfo]: /api/class-testinfo.mdx "TestInfo"
[TestInfoErrorMatcherResult]: /api/class-testinfoerrormatcherresult.mdx "TestInfoErrorMatcherResult"
[TestInfoError]: /api/class-testinfoerror.mdx "TestInfoError"
[TestOptions]: /api/class-testoptions.mdx "TestOptions"
[TestProject]: /api/class-testproject.mdx "TestProject"
Expand All @@ -904,6 +905,7 @@ browser.on('disconnected', data => {});
[Reporter]: /api/class-reporter.mdx "Reporter"
[Suite]: /api/class-suite.mdx "Suite"
[TestCase]: /api/class-testcase.mdx "TestCase"
[TestErrorMatcherResult]: /api/class-testerrormatcherresult.mdx "TestErrorMatcherResult"
[TestError]: /api/class-testerror.mdx "TestError"
[TestResult]: /api/class-testresult.mdx "TestResult"
[TestStep]: /api/class-teststep.mdx "TestStep"
Expand Down
2 changes: 2 additions & 0 deletions nodejs/docs/api/class-browsercontext.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -1318,6 +1318,7 @@ await browserContext.setHTTPCredentials(httpCredentials);
[Test]: /api/class-test.mdx "Test"
[TestConfig]: /api/class-testconfig.mdx "TestConfig"
[TestInfo]: /api/class-testinfo.mdx "TestInfo"
[TestInfoErrorMatcherResult]: /api/class-testinfoerrormatcherresult.mdx "TestInfoErrorMatcherResult"
[TestInfoError]: /api/class-testinfoerror.mdx "TestInfoError"
[TestOptions]: /api/class-testoptions.mdx "TestOptions"
[TestProject]: /api/class-testproject.mdx "TestProject"
Expand All @@ -1326,6 +1327,7 @@ await browserContext.setHTTPCredentials(httpCredentials);
[Reporter]: /api/class-reporter.mdx "Reporter"
[Suite]: /api/class-suite.mdx "Suite"
[TestCase]: /api/class-testcase.mdx "TestCase"
[TestErrorMatcherResult]: /api/class-testerrormatcherresult.mdx "TestErrorMatcherResult"
[TestError]: /api/class-testerror.mdx "TestError"
[TestResult]: /api/class-testresult.mdx "TestResult"
[TestStep]: /api/class-teststep.mdx "TestStep"
Expand Down
2 changes: 2 additions & 0 deletions nodejs/docs/api/class-browserserver.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,7 @@ browserServer.on('close', data => {});
[Test]: /api/class-test.mdx "Test"
[TestConfig]: /api/class-testconfig.mdx "TestConfig"
[TestInfo]: /api/class-testinfo.mdx "TestInfo"
[TestInfoErrorMatcherResult]: /api/class-testinfoerrormatcherresult.mdx "TestInfoErrorMatcherResult"
[TestInfoError]: /api/class-testinfoerror.mdx "TestInfoError"
[TestOptions]: /api/class-testoptions.mdx "TestOptions"
[TestProject]: /api/class-testproject.mdx "TestProject"
Expand All @@ -162,6 +163,7 @@ browserServer.on('close', data => {});
[Reporter]: /api/class-reporter.mdx "Reporter"
[Suite]: /api/class-suite.mdx "Suite"
[TestCase]: /api/class-testcase.mdx "TestCase"
[TestErrorMatcherResult]: /api/class-testerrormatcherresult.mdx "TestErrorMatcherResult"
[TestError]: /api/class-testerror.mdx "TestError"
[TestResult]: /api/class-testresult.mdx "TestResult"
[TestStep]: /api/class-teststep.mdx "TestStep"
Expand Down
2 changes: 2 additions & 0 deletions nodejs/docs/api/class-browsertype.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -731,6 +731,7 @@ browserType.name();
[Test]: /api/class-test.mdx "Test"
[TestConfig]: /api/class-testconfig.mdx "TestConfig"
[TestInfo]: /api/class-testinfo.mdx "TestInfo"
[TestInfoErrorMatcherResult]: /api/class-testinfoerrormatcherresult.mdx "TestInfoErrorMatcherResult"
[TestInfoError]: /api/class-testinfoerror.mdx "TestInfoError"
[TestOptions]: /api/class-testoptions.mdx "TestOptions"
[TestProject]: /api/class-testproject.mdx "TestProject"
Expand All @@ -739,6 +740,7 @@ browserType.name();
[Reporter]: /api/class-reporter.mdx "Reporter"
[Suite]: /api/class-suite.mdx "Suite"
[TestCase]: /api/class-testcase.mdx "TestCase"
[TestErrorMatcherResult]: /api/class-testerrormatcherresult.mdx "TestErrorMatcherResult"
[TestError]: /api/class-testerror.mdx "TestError"
[TestResult]: /api/class-testresult.mdx "TestResult"
[TestStep]: /api/class-teststep.mdx "TestStep"
Expand Down
2 changes: 2 additions & 0 deletions nodejs/docs/api/class-cdpsession.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,7 @@ await cdpSession.send(method, params);
[Test]: /api/class-test.mdx "Test"
[TestConfig]: /api/class-testconfig.mdx "TestConfig"
[TestInfo]: /api/class-testinfo.mdx "TestInfo"
[TestInfoErrorMatcherResult]: /api/class-testinfoerrormatcherresult.mdx "TestInfoErrorMatcherResult"
[TestInfoError]: /api/class-testinfoerror.mdx "TestInfoError"
[TestOptions]: /api/class-testoptions.mdx "TestOptions"
[TestProject]: /api/class-testproject.mdx "TestProject"
Expand All @@ -134,6 +135,7 @@ await cdpSession.send(method, params);
[Reporter]: /api/class-reporter.mdx "Reporter"
[Suite]: /api/class-suite.mdx "Suite"
[TestCase]: /api/class-testcase.mdx "TestCase"
[TestErrorMatcherResult]: /api/class-testerrormatcherresult.mdx "TestErrorMatcherResult"
[TestError]: /api/class-testerror.mdx "TestError"
[TestResult]: /api/class-testresult.mdx "TestResult"
[TestStep]: /api/class-teststep.mdx "TestStep"
Expand Down
Loading

0 comments on commit 662a6f0

Please sign in to comment.