You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/data/markdown/docs/02 javascript api/07 k6-experimental/01 browser.md
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -41,7 +41,7 @@ export default async function () {
41
41
constpage=context.newPage();
42
42
43
43
try {
44
-
awaitpage.goto('https://test.k6.io/')
44
+
awaitpage.goto('https://test.k6.io/');
45
45
} finally {
46
46
page.close();
47
47
browser.close();
@@ -68,3 +68,4 @@ export default async function () {
68
68
|[Request](/javascript-api/k6-experimental/browser/request/) <BWIPT /> | Used to keep track of the request the [`Page`](/javascript-api/k6-experimental/browser/page/) makes. |
69
69
|[Response](/javascript-api/k6-experimental/browser/response/) <BWIPT /> | Represents the response received by the [`Page`](/javascript-api/k6-experimental/browser/page/). |
70
70
|[Touchscreen](/javascript-api/k6-experimental/browser/touchscreen/)| Used to simulate touch interactions with the associated [`Page`](/javascript-api/k6-experimental/browser/page/). |
71
+
|[Worker](/javascript-api/k6-experimental/browser/worker/)| Represents a [WebWorker](https://developer.mozilla.org/en-US/docs/Web/API/Web_Workers_API). |
0 commit comments