Marie Cruz
Marie Cruz
When running this [example script](https://github.com/grafana/xk6-browser/blob/main/examples/fillform.js), I notice that it doesn't report `browser_first_meaningful_paint` If I add the `slowMo` option and set it to `30ms` or more,`browser_first_meaningful_paint` is reported. When `25ms` is...
In one of our examples, we have: ``` // In the following Promise.all the tails locator clicks // on the tails button by using the locator's selector. // Since clicking...
According to https://web.dev/first-meaningful-paint/: First Meaningful Paint (FMP) is deprecated in Lighthouse 6.0. In practice FMP has been overly sensitive to small differences in the page load, leading to inconsistent (bimodal)...
Having JS code static analysis tools across the project would be nice to have so there is code consistency across the JS examples. We can use ESLint to enforce certain...
Currently, we have the ability to support custom tags in k6 core when using `http.get()` or `http.post()`. This allows us to customise reports, thresholds or other use cases. See the...
### Feature Description ### Feature Description Playwright's Locator API contains more methods that are useful for browser testing, such as: - `.dragTo` for dragging draggable elements Dragging is also a...
### Feature Description Playwright's Locator API contains more methods that are useful for browser testing, such as: - `.clear()` for clearing text inputs When typing or filling textboxes or input...
### Brief summary `page.waitForLoadState()` is returning early based on the previous navigations lifecycle events, not the one that was caused by the click. This means that when this method is...
### Brief summary I have a sample script below which returns false even if `page.close()` was called. ``` import { chromium } from 'k6/experimental/browser'; export default async function () {...
From https://community.k6.io/t/any-public-examples-of-xk6-browser-with-reusable-fixtures/5874 Might be helpful to create an example on our doc to demonstrate how we can create shared test data or fixtures. Example: - How to share test data?...