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/translated-guides/en/01 Get started/02 Installation.md
+6Lines changed: 6 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -56,6 +56,12 @@ Alternatively, you can download and run [the latest official installer](https://
56
56
docker pull grafana/k6
57
57
```
58
58
59
+
We also have a separate image you can use with `chromium` installed to run k6 browser tests.
60
+
61
+
```bash
62
+
docker pull grafana/k6:master-with-browser
63
+
```
64
+
59
65
## Download the k6 binary
60
66
61
67
Our [GitHub Releases page](https://github.com/grafana/k6/releases) has a standalone binary for all platforms. After downloading and extracting the archive for your platform, place the `k6` or `k6.exe` binary in your `PATH` to run `k6` from any location.
Collapse file: src/data/markdown/translated-guides/en/03 Using k6 browser/02 Running browser tests.md
When using Docker to run k6 browser tests, make sure you have pulled the correct image with Chromium built-in. See [k6 Installation via Docker](/get-started/installation/#docker) for more information.
88
+
89
+
</Blockquote>
90
+
77
91
## Interact with elements on your webpage
78
92
79
93
You can use `page.locator()` and pass in the element's selector you want to find on the page. `page.locator()` will create and return a [Locator](/javascript-api/k6-experimental/browser/locator/) object, which you can later use to interact with the element.
@@ -174,7 +188,7 @@ To run a browser-level and protocol-level test concurrently, you can use [scenar
174
188
175
189
Keep in mind that there is an additional performance overhead when it comes to spinning up a browser VU and that the resource usage will depend on the system under test.
0 commit comments