Skip to content

Commit fd1bf0b

Browse files
committed
Fix $ and $$ in page index
1 parent 06a2b15 commit fd1bf0b

File tree

1 file changed

+2
-2
lines changed
  • docs/sources/k6/next/javascript-api/k6-browser/page

1 file changed

+2
-2
lines changed

docs/sources/k6/next/javascript-api/k6-browser/page/_index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ Page provides methods to interact with a single tab in a running web browser. A
1010

1111
| Method | Description |
1212
| ----------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
13+
| [$(selector)](https://grafana.com/docs/k6/<K6_VERSION>/javascript-api/k6-browser/page/page-dollar) | Finds an element matching the specified `selector` within the page. |
14+
| [$$(selector)](https://grafana.com/docs/k6/<K6_VERSION>/javascript-api/k6-browser/page/page-doubledollar) | Finds all elements matching the specified `selector` within the page. |
1315
| [bringToFront()](https://grafana.com/docs/k6/<K6_VERSION>/javascript-api/k6-browser/page/bringtofront) | Activates a browser tab. |
1416
| [check(selector[, options])](https://grafana.com/docs/k6/<K6_VERSION>/javascript-api/k6-browser/page/check/) | Select the input checkbox. |
1517
| [click(selector[, options])](https://grafana.com/docs/k6/<K6_VERSION>/javascript-api/k6-browser/page/click/) | Clicks on an element matching a `selector`. |
@@ -18,8 +20,6 @@ Page provides methods to interact with a single tab in a running web browser. A
1820
| [context()](https://grafana.com/docs/k6/<K6_VERSION>/javascript-api/k6-browser/page/context) | Gets the [BrowserContext](https://grafana.com/docs/k6/<K6_VERSION>/javascript-api/k6-browser/browsercontext) that the page belongs to. |
1921
| [dblclick(selector[, options])](https://grafana.com/docs/k6/<K6_VERSION>/javascript-api/k6-browser/page/dblclick/) | With the [Mouse](https://grafana.com/docs/k6/<K6_VERSION>/javascript-api/k6-browser/mouse), double click on an element matching the provided `selector`. |
2022
| [dispatchEvent(selector, type, eventInit[, options])](https://grafana.com/docs/k6/<K6_VERSION>/javascript-api/k6-browser/page/dispatchevent/) | Dispatches HTML DOM event types e.g. `'click'` |
21-
| [page$(selector)](https://grafana.com/docs/k6/<K6_VERSION>/javascript-api/k6-browser/page/page-dollar) | Finds an element matching the specified `selector` within the page. |
22-
| [page$$(selector)](https://grafana.com/docs/k6/<K6_VERSION>/javascript-api/k6-browser/page/page-doubledollar) | Finds all elements matching the specified `selector` within the page. |
2323
| [emulateMedia([options])](https://grafana.com/docs/k6/<K6_VERSION>/javascript-api/k6-browser/page/emulatemedia/) | Changes the CSS media type and the color scheme feature. |
2424
| [emulateVisionDeficiency(type)](https://grafana.com/docs/k6/<K6_VERSION>/javascript-api/k6-browser/page/emulatevisiondeficiency) | Emulates your website with the specified vision deficiency `type`. |
2525
| [evaluate(pageFunction[, arg])](https://grafana.com/docs/k6/<K6_VERSION>/javascript-api/k6-browser/page/evaluate/) | Returns the value of the `pageFunction` invocation. |

0 commit comments

Comments
 (0)