From 9772c963e99fb44abbbafb321b5721c0e5b9dbd5 Mon Sep 17 00:00:00 2001 From: ka3de Date: Wed, 27 Sep 2023 15:02:56 +0200 Subject: [PATCH] Fix browser ConsoleMessage link --- release notes/v0.47.0.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/release notes/v0.47.0.md b/release notes/v0.47.0.md index fced9d30f9e..be3f8433e3b 100644 --- a/release notes/v0.47.0.md +++ b/release notes/v0.47.0.md @@ -61,7 +61,7 @@ console.log(context.cookies.length); // 0 ### Add support for browser module's `page.on('console')` [browser#1006](https://github.com/grafana/xk6-browser/pull/1006) -Allows users to register a handler to be executed every time the `console` API methods are called from within the page's JavaScript context. The arguments passed into the handler are defined by the (ConsoleMessage)[https://k6.io/docs/javascript-api/k6-experimental/browser/consolemessage/] class. +Allows users to register a handler to be executed every time the `console` API methods are called from within the page's JavaScript context. The arguments passed into the handler are defined by the [ConsoleMessage](https://k6.io/docs/javascript-api/k6-experimental/browser/consolemessage/) class. ### UX improvements and enhancements