Pranjul Kalsi
Pranjul Kalsi
#### PR Description Added summary to `stage.metrics` for loki 1. In `internal/component/loki/process/metric` - Added `summary.go` - defines configuration and runtime logic for Summary metric. - Added `summary_test.go` - Test for...
## Description This PR 1. Adds **MariaDB** as a Source - Implementation is similar to **MySQL** source 2. Utilises pre implemented **MySQL** Tools - `mysql-execute-sql` - `mysql-list-active-queries` - `mysql-list-table-fragmentation` -...
## What? This PR implements `page.goBack()` and `page.goForward()` to allow users to navigate through the browser's session history. I have kept the implementation inline with `Reload()` and followed guidelines mentioned...
## What? This PR adds support for `console.log` for `ArrayBuffer` and `TypedArray` by implementing Option 2, replaces JSON marshaling with direct `string` formatting to achieve Deno-style output for `console.log`: -...
## What? Address pending review comments from PR #5075 - Use `ErrElementNotVisible` sentinel error in stepIntoFrame - Add `newPageWithIFrameSrcdoc` test helper utility - Move `FrameLocator` type to `locator.go` for better...
## What? This PR adds support for console.log for ArrayBuffer and TypedArray. #### Before ``` INFO[0000] --- Direct Cases --- source=console INFO[0000] {"0":4,"1":2} source=console INFO[0000] {} source=console INFO[0000] --- Nested...
### Feature Description Improve `console.log` output formatting for `ArrayBuffer` and `TypedArray` by modifying the `traverseValue` function to avoid `json.Marshal` entirely. ### Suggested Solution (optional) Following the discussion in #5469, two...
## What? This PR Add `frameLocator()` method to Page, Frame, Locator, and FrameLocator objects. This is a shorthand for `locator(selector).contentFrame()` providing a more concise API for working with iframes. #####...
## What? This PR Adds the `page.on('requestfailed')` event handler to the k6 browser module, following the Playwright API. This event fires when a network request fails to reach the server:...
## What? Implements the `page.on('requestfinished')` event handler that fires when a network request successfully completes (receives a response). - closely followed the implementation of `page.on('request')` and `page.on('response')` events. - Added...