Skip to content

Commit 2efd444

Browse files
authored
Merge pull request #2095 from grafana/feat/remove-chrome-extension-references
Remove references to the browser recorder
2 parents 1e8caa8 + 4288834 commit 2efd444

File tree

15 files changed

+14
-100
lines changed

15 files changed

+14
-100
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/reference/integrations.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ weight: 01
1212
Codeless tools to speed up the test creation.
1313

1414
- [Test Builder](https://grafana.com/docs/k6/<K6_VERSION>/using-k6/test-authoring/test-builder) - Inspired by the Postman API Builder. Codeless UI tool to generate a k6 test quickly.
15-
- [Browser Recorder](https://grafana.com/docs/k6/<K6_VERSION>/using-k6/test-authoring/create-tests-from-recordings/using-the-browser-recorder) - Record a user journey to create your k6 test.
1615

1716
## IDE extensions
1817

docs/sources/k6/next/using-k6/test-authoring/create-tests-from-recordings/_index.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,10 @@ You can use this recording to auto-generate your test logic.
1212
Testers commonly use recordings to avoid writing complex tests from scratch.
1313
For example, testing advanced scenarios on websites or mobile applications, such as end-to-end (E2E) tests with dozens or hundreds of requests.
1414

15-
k6 provides three tools that can directly convert a recording into k6 script:
15+
k6 provides two tools that can convert a recording into a k6 script:
16+
17+
- [Grafana k6 Studio](https://grafana.com/docs/k6/<K6_VERSION>/k6-studio) is an open-source desktop application designed to help you record browser interactions and generate k6 test scripts.
1618

17-
- [Browser recorder](https://grafana.com/docs/k6/<K6_VERSION>/using-k6/test-authoring/create-tests-from-recordings/using-the-browser-recorder) generates a k6 script from a browser session.
1819
- [HAR converter](https://grafana.com/docs/k6/<K6_VERSION>/using-k6/test-authoring/create-tests-from-recordings/using-the-har-converter) generates a k6 script from the requests included in a HAR file.
1920

2021
## Steps

docs/sources/k6/next/using-k6/test-authoring/create-tests-from-recordings/using-the-browser-recorder.md

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,17 @@
11
---
22
title: 'Using the browser recorder'
3-
description: 'The browser recorder allows generating a k6 script based on a web session. It is available as extensions for Chrome and Firefox.'
3+
description: 'The browser recorder allows generating a k6 script based on a web session.'
44
weight: 01
55
---
66

77
# Using the browser recorder
88

99
{{< admonition type="caution" >}}
1010

11-
The Grafana k6 Browser Recorder extension is deprecated and will be removed in a future release. Use [k6 Studio](https://grafana.com/docs/k6-studio) to record network traffic.
11+
The Grafana k6 Browser Recorder extension is deprecated. Use [k6 Studio](https://grafana.com/docs/k6-studio) to record network traffic.
1212

1313
{{< /admonition >}}
1414

15-
The browser recorder lets you generate a k6 script based on a browser session.
16-
It's available as an extension for [Chrome](https://chrome.google.com/webstore/detail/grafana-k6-browser-record/fbanjfonbcedhifbgikmjelkkckhhidl) and [Firefox](https://addons.mozilla.org/en-US/firefox/addon/grafana-k6-browser-recorder/).
17-
1815
## Before you start
1916

2017
Before you start, consider the following:

docs/sources/k6/next/using-k6/test-authoring/create-tests-from-recordings/using-the-devtools-recorder.md

Lines changed: 0 additions & 37 deletions
This file was deleted.

docs/sources/k6/next/using-k6/test-authoring/create-tests-from-recordings/using-the-har-converter.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ weight: 02
77
# Using the HAR converter
88

99
The [har-to-k6 converter](https://github.com/k6io/har-to-k6) is a NodeJS tool that generates a k6 script based on the HTTP requests included in a [HAR file](<https://en.wikipedia.org/wiki/HAR_(file_format)>).
10-
It is an alternative to the [Browser recorder](https://grafana.com/docs/k6/<K6_VERSION>/using-k6/test-authoring/create-tests-from-recordings/using-the-browser-recorder).
1110

1211
{{< admonition type="note" >}}
1312

docs/sources/k6/v1.3.x/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/v1.3.x/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/v1.3.x/reference/integrations.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ weight: 01
1212
Codeless tools to speed up the test creation.
1313

1414
- [Test Builder](https://grafana.com/docs/k6/<K6_VERSION>/using-k6/test-authoring/test-builder) - Inspired by the Postman API Builder. Codeless UI tool to generate a k6 test quickly.
15-
- [Browser Recorder](https://grafana.com/docs/k6/<K6_VERSION>/using-k6/test-authoring/create-tests-from-recordings/using-the-browser-recorder) - Record a user journey to create your k6 test.
1615

1716
## IDE extensions
1817

0 commit comments

Comments
 (0)