8 questions
0 votes
0 answers
31 views
k6-browser: \first_party_sets.db: The process cannot access the file because it is being used by another process
I created some web browser UI tests for k6-browser. I run a browser session with one virtual user at a time and it does what I expect. When I run 10 vu’s in parallel in non-headless mode, it also ...
1 vote
0 answers
108 views
how to find an element inside an iframe in k6/browser?
I'm trying to automate an interaction with a dynamic iframe using K6 Browser, but I'm facing difficulties when trying to click a button inside that iframe. The code I'm using is as follows: const ...
0 votes
2 answers
328 views
Identify iframe in k6 browser
I see the iframe gets inserted into DOM after I click on some icon. So DOM gets updated dynamically. Once I am able to get this iframe element, I need to operate on some elements within it. There are ...
0 votes
1 answer
403 views
k6 error when trying to send data to InfluxDB in the Cluster
I sh file that executes a performance test in the Cluster k8s but when I execute the Pod appears a message: level=error msg="Couldn't write stats" error="Action: Deny. Reason: No rule ...
0 votes
1 answer
493 views
xk6 Prometheus remote write fails with go error
I am trying to use xk6 prometheus remote write to send k6 data. In GitLab pipeline trying to install xk6 on golang image but it fail with go error with some version issue. GitLab job run:k6: stage: ...
0 votes
2 answers
2k views
K6 - Url redirection issue
I am having trouble with the redirection page during a browser test. Despite the sleep(10) and all the page.waitForNavigation() when I finally ask for page.title() the output is not the final page’s ...
2 votes
0 answers
212 views
Does k6 browser support url matching patterns for thresholds?
Im currently trying to write some tests for web app within k6 experimental browser. While I can create a threshold like this, that works just fine: thresholds: { ‘webvital_largest_content_paint{url:...
0 votes
1 answer
598 views
xk6-browser client-side test result for single user one iteration is not correct
I have just started using xk6-browser, and executed following test script. import { chromium } from 'k6/x/browser'; export default function () { const browser = chromium.launch({ headless: false });...