Skip to content

Commit af24ea1

Browse files
committed
fix: update broken links
1 parent 6039591 commit af24ea1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/data/markdown/translated-guides/en/08 Testing Guides/03 Load testing websites.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ For example, a browser-based load testing script might include instructions to n
172172
Unlike protocol-based load testing, browser-based load testing scripts generate load by starting multiple instances of browsers and interacting with your application the way real users would. Testing at the browser level can also be the only option for testing Single-Page Applications where a lot of the application logic is executed by client-side scripts.
173173

174174
Scripting on the browser level usually requires the use of different tools from the ones used to test at the protocol level.
175-
However, k6 now has an experimental module called [k6 browser](https://k6.io/docs/using-k6-browser/overview/) that allows the creation of browser-based test scripts alongside protocol-based ones.
175+
However, k6 now has an experimental module called [k6 browser](/using-k6-browser/overview/) that allows the creation of browser-based test scripts alongside protocol-based ones.
176176

177177
#### Sample browser-based test script
178178

@@ -226,9 +226,9 @@ The following steps can help you get started with a browser-level test script.
226226

227227
**Identify unique selectors.** Once you have identified which page elements a user interacts with, use the Element Inspector for DevTools in your browser to find a unique, static, and simple way to identify each element. The script needs selectors to find the right element to interact with.
228228

229-
**Use elements to verify responses.** After every action, use [locators](https://k6.io/docs/javascript-api/k6-experimental/browser/locator/) to search for elements on the page that you would expect to find. This verification helps ensure that the script has reached the expected page.
229+
**Use elements to verify responses.** After every action, use [locators](/javascript-api/k6-experimental/browser/locator/) to search for elements on the page that you would expect to find. This verification helps ensure that the script has reached the expected page.
230230

231-
**Take screenshots for every action while debugging.** One of the advantages of browser-based testing is the ability to take screenshots. After every user interaction the script simulates, use [page.screenshot](https://k6.io/docs/javascript-api/k6-experimental/browser/page/) to save a visual image of what the script encountered for later troubleshooting.
231+
**Take screenshots for every action while debugging.** One of the advantages of browser-based testing is the ability to take screenshots. After every user interaction the script simulates, use [page.screenshot](/javascript-api/k6-experimental/browser/page/) to save a visual image of what the script encountered for later troubleshooting.
232232

233233

234234
### Hybrid load testing

0 commit comments

Comments
 (0)