Skip to content

Commit dc77050

Browse files
authored
Merge branch 'main' into dynamic-extension-docs
2 parents 3db053c + 2efd444 commit dc77050

Some content is hidden

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

44 files changed

+17
-189
lines changed

docs/sources/k6/next/examples/correlation-and-dynamic-data.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: 'Correlation and Dynamic Data'
33
slug: '/correlation-and-dynamic-data'
44
description: |
55
Scripting examples on how to correlate dynamic data in your test script. Correlation is
6-
often required when using the Chrome Extension or HAR converter to generate your test script.
6+
often required when using the HAR converter to generate your test script.
77
This is due to the fact that those tools will capture session IDs, CSRF tokens, VIEWSTATE,
88
wpnonce, and other dynamic values from your specific session.
99
weight: 04
@@ -12,7 +12,7 @@ weight: 04
1212
# Correlation and Dynamic Data
1313

1414
Scripting examples on how to correlate dynamic data in your test script. Correlation is often
15-
required when using the Chrome Extension or HAR converter to generate your test script. This
15+
required when using the HAR converter to generate your test script. This
1616
is because those tools will capture session IDs, CSRF tokens, VIEWSTATE, wpnonce, and other
1717
dynamic values from your specific session. These tokens typically expire very quickly. This
1818
is one of the most common things that users will script for when testing user journeys across

docs/sources/k6/next/get-started/resources.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,5 @@ If you want to run tests with high loads, you can deploy and host them on your i
4141

4242
- [Kubernetes Operator](https://k6.io/blog/running-distributed-tests-on-k8s/). Distribute test execution across a Kubernetes cluster.
4343
- [xk6 extensions](https://grafana.com/docs/k6/<K6_VERSION>/extensions). Custom k6 binaries to support the tool you need.
44-
- [The browser recorder](https://grafana.com/docs/k6/<K6_VERSION>/using-k6/test-authoring/create-tests-from-recordings/using-the-browser-recorder). Make test scripts from browser sessions.
4544
- [Use TypeScript in k6 scripts](https://grafana.com/docs/k6/<K6_VERSION>/using-k6/javascript-typescript-compatibility-mode/)
4645
- [Integrations](https://grafana.com/docs/k6/<K6_VERSION>/misc/integrations)

docs/sources/k6/next/javascript-api/k6-browser/frame/getbyalttext.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@ description: 'Browser module: frame.getByAltText(altText[, options]) method'
1111

1212
Find and click an image by its alt text:
1313

14-
<!-- md-k6:skip -->
15-
1614
```javascript
1715
import { browser } from 'k6/browser';
1816

@@ -50,8 +48,6 @@ export default async function () {
5048

5149
Use exact matching for precise alt text:
5250

53-
<!-- md-k6:skip -->
54-
5551
```javascript
5652
import { browser } from 'k6/browser';
5753

@@ -89,8 +85,6 @@ export default async function () {
8985

9086
Find images using pattern matching:
9187

92-
<!-- md-k6:skip -->
93-
9488
```javascript
9589
import { browser } from 'k6/browser';
9690

docs/sources/k6/next/javascript-api/k6-browser/frame/getbylabel.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@ description: 'Browser module: frame.getByLabel(text[, options]) method'
1111

1212
Fill form fields using their labels:
1313

14-
<!-- md-k6:skip -->
15-
1614
```javascript
1715
import { browser } from 'k6/browser';
1816

@@ -56,8 +54,6 @@ export default async function () {
5654

5755
Handle various form control types in various label association patterns:
5856

59-
<!-- md-k6:skip -->
60-
6157
```javascript
6258
import { browser } from 'k6/browser';
6359

docs/sources/k6/next/javascript-api/k6-browser/frame/getbyplaceholder.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@ description: 'Browser module: frame.getByPlaceholder(placeholder[, options]) met
99

1010
Find and fill inputs by their placeholder text:
1111

12-
<!-- md-k6:skip -->
13-
1412
```javascript
1513
import { browser } from 'k6/browser';
1614

docs/sources/k6/next/javascript-api/k6-browser/frame/getbyrole.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@ description: 'Browser module: frame.getByRole(role[, options]) method'
1111

1212
Find and click a button by its role:
1313

14-
<!-- md-k6:skip -->
15-
1614
```javascript
1715
import { browser } from 'k6/browser';
1816

docs/sources/k6/next/javascript-api/k6-browser/frame/getbytestid.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@ description: 'Browser module: frame.getByTestId(testId) method'
1111

1212
Locate and interact with elements using test IDs:
1313

14-
<!-- md-k6:skip -->
15-
1614
```javascript
1715
import { browser } from 'k6/browser';
1816

docs/sources/k6/next/javascript-api/k6-browser/frame/getbytext.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@ description: 'Browser module: frame.getByText(text[, options]) method'
99

1010
Find and click elements by their visible text:
1111

12-
<!-- md-k6:skip -->
13-
1412
```javascript
1513
import { browser } from 'k6/browser';
1614

docs/sources/k6/next/javascript-api/k6-browser/frame/getbytitle.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@ description: 'Browser module: frame.getByTitle(title[, options]) method'
99

1010
Find and interact with elements by their title attribute:
1111

12-
<!-- md-k6:skip -->
13-
1412
```javascript
1513
import { browser } from 'k6/browser';
1614

docs/sources/k6/next/javascript-api/k6-browser/framelocator/getbyalttext.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@ description: 'Browser module: frameLocator.getByAltText(altText[, options]) meth
1111

1212
Find and click an image by its alt text:
1313

14-
<!-- md-k6:skip -->
15-
1614
```javascript
1715
import { browser } from 'k6/browser';
1816

@@ -52,8 +50,6 @@ export default async function () {
5250

5351
Use exact matching for precise alt text:
5452

55-
<!-- md-k6:skip -->
56-
5753
```javascript
5854
import { browser } from 'k6/browser';
5955

@@ -93,8 +89,6 @@ export default async function () {
9389

9490
Find images using pattern matching:
9591

96-
<!-- md-k6:skip -->
97-
9892
```javascript
9993
import { browser } from 'k6/browser';
10094

0 commit comments

Comments
 (0)