Skip to content

Commit 85c4c9f

Browse files
Remove <TableWithNestedRows> tag from all files (#2117)
1 parent 1aa31c3 commit 85c4c9f

File tree

1,785 files changed

+0
-3504
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,785 files changed

+0
-3504
lines changed

docs/sources/k6/next/javascript-api/k6-browser/browsercontext/grantpermissions.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,13 @@ description: 'Grants specified permissions to the BrowserContext.'
77

88
Grants specified permissions to the [browser context](https://grafana.com/docs/k6/<K6_VERSION>/javascript-api/k6-browser/browsercontext). Only grants corresponding permissions to the given origin if specified.
99

10-
<TableWithNestedRows>
1110

1211
| Parameter | Type | Description |
1312
| -------------- | ------ | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
1413
| permissions | array | A string array of permissions to grant. A permission can be one of the following values: `'geolocation'`, `'midi'`, `'midi-sysex'` (system-exclusive midi), `'notifications'`, `'camera'`, `'microphone'`, `'background-sync'`, `'ambient-light-sensor'`, `'accelerometer'`, `'gyroscope'`, `'magnetometer'`, `'accessibility-events'`, `'clipboard-read'`, `'clipboard-write'`, `'payment-handler'`. |
1514
| options | object | Optional. |
1615
| options.origin | string | The [origin](https://developer.mozilla.org/en-US/docs/Glossary/Origin) to grant permissions to, e.g. `'https://example.com'`. |
1716

18-
</TableWithNestedRows>
1917

2018
### Returns
2119

docs/sources/k6/next/javascript-api/k6-browser/browsercontext/setgeolocation.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ This feature has **known issues**. For details, refer to
1414

1515
Sets the [browser context](https://grafana.com/docs/k6/<K6_VERSION>/javascript-api/k6-browser/browsercontext)'s geolocation.
1616

17-
<TableWithNestedRows>
1817

1918
| Parameter | Type | Default | Description |
2019
| --------------------- | ------ | ------- | ------------------------------------- |
@@ -23,7 +22,6 @@ Sets the [browser context](https://grafana.com/docs/k6/<K6_VERSION>/javascript-a
2322
| geolocation.longitude | number | `0` | Latitude between -180 and 180. |
2423
| geolocation.accuracy | number | `0` | Optional non-negative accuracy value. |
2524

26-
</TableWithNestedRows>
2725

2826
### Returns
2927

docs/sources/k6/next/javascript-api/k6-browser/browsercontext/waitforevent.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ description: 'Waits for event to fire and returns its value.'
55

66
Waits for the event to fire and returns its value. If a predicate function has been set it will pass the value to the predicate function, which must return `true` for the promise to resolve.
77

8-
<TableWithNestedRows>
98

109
| Parameter | Type | Default | Description |
1110
| ---------------------------- | ---------------- | ------- | ----------------------------------------------------------------------------------------------------------------------------------------------------- |
@@ -14,7 +13,6 @@ Waits for the event to fire and returns its value. If a predicate function has b
1413
| optionsOrPredicate.predicate | function | `null` | Optional. Function that will be called when the `'page'` event is emitted. The event data will be passed to it and it must return `true` to continue. |
1514
| optionsOrPredicate.timeout | number | `30000` | Optional. Maximum time to wait in milliseconds. |
1615

17-
</TableWithNestedRows>
1816

1917
### Returns
2018

docs/sources/k6/next/javascript-api/k6-browser/elementhandle/check.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ Use [`locator.check([options])`](https://grafana.com/docs/k6/<K6_VERSION>/javasc
1313

1414
Use this method to select an `input` checkbox.
1515

16-
<TableWithNestedRows>
1716

1817
| Parameter | Type | Default | Description |
1918
| ------------------- | ------- | ------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
@@ -26,7 +25,6 @@ Use this method to select an `input` checkbox.
2625
| options.timeout | number | `30000` | Maximum time in milliseconds. Pass `0` to disable the timeout. Default is overridden by the `setDefaultTimeout` option on [BrowserContext](https://grafana.com/docs/k6/<K6_VERSION>/javascript-api/k6-browser/browsercontext/) or [Page](https://grafana.com/docs/k6/<K6_VERSION>/javascript-api/k6-browser/page/). |
2726
| options.trial | boolean | `false` | Setting this to `true` will perform the actionability checks without performing the action. |
2827

29-
</TableWithNestedRows>
3028

3129
### Returns
3230

docs/sources/k6/next/javascript-api/k6-browser/elementhandle/click.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ Use [`locator.click([options])`](https://grafana.com/docs/k6/<K6_VERSION>/javasc
1313

1414
Mouse click on the chosen element.
1515

16-
<TableWithNestedRows>
1716

1817
| Parameter | Type | Default | Description |
1918
| ------------------- | -------- | ------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
@@ -31,7 +30,6 @@ Mouse click on the chosen element.
3130
| options.trial | boolean | `false` | Setting this to `true` will perform the actionability checks without performing the action. |
3231

3332

34-
</TableWithNestedRows>
3533

3634
### Returns
3735

docs/sources/k6/next/javascript-api/k6-browser/elementhandle/dblclick.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ Use [`locator.dblclick([options])`](https://grafana.com/docs/k6/<K6_VERSION>/jav
1313

1414
Mouse double clicks on the element.
1515

16-
<TableWithNestedRows>
1716

1817
| Parameter | Type | Default | Description |
1918
| ------------------- | -------- | ------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
@@ -29,7 +28,6 @@ Mouse double clicks on the element.
2928
| options.timeout | number | `30000` | Maximum time in milliseconds. Passing `0` disables the timeout. The `setDefaultTimeout` option on [BrowserContext](https://grafana.com/docs/k6/<K6_VERSION>/javascript-api/k6-browser/browsercontext/) or [Page](https://grafana.com/docs/k6/<K6_VERSION>/javascript-api/k6-browser/page/) can override the default timeout. |
3029
| options.trial | boolean | `false` | Performs the actionability checks without performing the double click action if set to `true`. |
3130

32-
</TableWithNestedRows>
3331

3432
### Example
3533

docs/sources/k6/next/javascript-api/k6-browser/elementhandle/dispatchevent.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ Use [`locator.dispatchEvent(type, eventInit[, options])`](https://grafana.com/do
1313

1414
Dispatches HTML DOM event types e.g. `'click'`.
1515

16-
<TableWithNestedRows>
1716

1817
| Parameter | Type | Defaults | Description |
1918
| --------------- | ------ | -------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
@@ -22,7 +21,6 @@ Dispatches HTML DOM event types e.g. `'click'`.
2221
| options | object | `null` | |
2322
| options.timeout | number | `30000` | Maximum time in milliseconds. Pass `0` to disable the timeout. Default is overridden by the `setDefaultTimeout` option on [BrowserContext](https://grafana.com/docs/k6/<K6_VERSION>/javascript-api/k6-browser/browsercontext/) or [Page](https://grafana.com/docs/k6/<K6_VERSION>/javascript-api/k6-browser/page/). |
2423

25-
</TableWithNestedRows>
2624

2725
### eventInit
2826

docs/sources/k6/next/javascript-api/k6-browser/elementhandle/fill.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ Use [`locator.fill(value, [options])`](https://grafana.com/docs/k6/<K6_VERSION>/
1313

1414
Fill an `input`, `textarea` or `contenteditable` element with the provided value.
1515

16-
<TableWithNestedRows>
1716

1817
| Parameter | Type | Default | Description |
1918
| ------------------- | ------- | ------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
@@ -23,7 +22,6 @@ Fill an `input`, `textarea` or `contenteditable` element with the provided value
2322
| options.noWaitAfter | boolean | `false` | If set to `true` and a navigation occurs from performing this action, it will not wait for it to complete. |
2423
| options.timeout | number | `30000` | Maximum time in milliseconds. Pass `0` to disable the timeout. Default is overridden by the `setDefaultTimeout` option on [BrowserContext](https://grafana.com/docs/k6/<K6_VERSION>/javascript-api/k6-browser/browsercontext/) or [Page](https://grafana.com/docs/k6/<K6_VERSION>/javascript-api/k6-browser/page/). |
2524

26-
</TableWithNestedRows>
2725

2826
### Returns
2927

docs/sources/k6/next/javascript-api/k6-browser/elementhandle/getattribute.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,11 @@ Use [`locator.getAttribute(name[, options])`](https://grafana.com/docs/k6/<K6_VE
1313

1414
Returns the element attribute value for the given attribute name.
1515

16-
<TableWithNestedRows>
1716

1817
| Parameter | Type | Default | Description |
1918
| --------------- | ------ | ------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
2019
| name | string | `''` | Attribute name to get the value for. |
2120

22-
</TableWithNestedRows>
2321

2422
### Returns
2523

docs/sources/k6/next/javascript-api/k6-browser/elementhandle/hover.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ Use [`locator.hover([options])`](https://grafana.com/docs/k6/<K6_VERSION>/javasc
1313

1414
Hovers over the element.
1515

16-
<TableWithNestedRows>
1716

1817
| Parameter | Type | Default | Description |
1918
| ------------------- | -------- | ------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
@@ -27,7 +26,6 @@ Hovers over the element.
2726
| options.timeout | number | `30000` | Maximum time in milliseconds. Pass `0` to disable the timeout. Default is overridden by the `setDefaultTimeout` option on [BrowserContext](https://grafana.com/docs/k6/<K6_VERSION>/javascript-api/k6-browser/browsercontext/) or [Page](https://grafana.com/docs/k6/<K6_VERSION>/javascript-api/k6-browser/page/). |
2827
| options.trial | boolean | `false` | Setting this to `true` will perform the actionability checks without performing the action. |
2928

30-
</TableWithNestedRows>
3129

3230
### Returns
3331

0 commit comments

Comments
 (0)