1,146 questions
0
votes
0
answers
25
views
Function scroll(element).click() is not working in Karate Framework
I am currently testing the orangehrmdemo site. I am executing the following scenario:
Step 1: login
Step 2: click the My Info button
Step 3: enter information.
However, at the step of selecting ...
0
votes
0
answers
16
views
Puppeteer Browser Crashes After File Upload and Processing (650MB Video File)
I'm using Puppeteer (version 24.6.0) to automate a video file upload (650MB) on a webpage. The upload works fine, but during the processing of the file, the Puppeteer-controlled browser crashes or ...
0
votes
0
answers
20
views
Selenium action chains scrolling
I'm looking for a away to scroll a select options using selinum,
the options is inside a modal.
I have the coordinates of the select option accurately,
using the coordinates I should find a way to ...
0
votes
1
answer
70
views
How to Freeze a Flourish Studio Bar Chart Race Every 0.01s for High-Quality PDF Capture?
I created the following Flourish Studio bar chart race as an example for this topic:
https://flo.uri.sh/visualisation/19321054/embed
Now, I want to capture a sequence of PDF prints from this bar chart ...
1
vote
1
answer
124
views
How to run multiple browser-use agents in parallel?
Currently I have this code
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
:brief: Run multiple browser-use agents in parallel
"""
import asyncio
import os
from ...
-4
votes
4
answers
488
views
How to set the playwright browser size at startup? [closed]
setViewPortSize doesn't set the browser's window size in Playwright
How can I set the browser window (viewport) size at startup?
2
votes
1
answer
172
views
Browser-use OSError: cannot open resource
I am working with browser-use python library and I encountered a font error when running the code. The code works fine with most websites but for some reason, it doesn't work with others.
Details:
I ...
0
votes
2
answers
48
views
Can anyone help me out to debug below Robot framework code?
I have written below Robot framework test case code to login into the application but facing "Test case cannot be empty" error.
I have installed Data driver library
properly mapped the data ...
0
votes
1
answer
89
views
How can we automate data fetching for Core Web Vitals?
I have been asked to maintain a daily report where I keep a track of the number of good, poor and average urls every alernative day. The way that this works is usually that today, we would get the ...
2
votes
0
answers
17
views
ExtentsReports child node get start and end time method issue
enter image description hereExtentSparkReporter htmlReporterSuite = createHtmlReporter(randomFilePath);
extent = new ExtentReports();
extent.attachReporter(htmlReporterSuite);
...
1
vote
2
answers
678
views
Puppeteer: How to Disable "Change Your Password" (Password Leak Detection) Popup in Chrome?
I am using Puppeteer for browser automation, and I encounter a popup in Chrome that says:
"Change your password. The password you just used was exposed in a data breach. Change it now in Google ...
0
votes
0
answers
75
views
How to Programmatically Simulate Start and Stop of Chrome DevTools Recorder through the code script in any way possible?
I need to simulate the start and stop of the Chrome DevTools Recorder using code instead of manually doing it.
Any guidance in process would be highly appreciated!
I have seen a lot of documentation ...
1
vote
1
answer
66
views
how to click on element from JSHandle in Python Playwright
I have a locator for a dropdown list which implemented as virtual list, below is the way I'm fetching list options
dropdown_locator.evaluate_handle('$0 => Array.from($0.__dropdownOptions)
result ...
0
votes
0
answers
66
views
Upload file not working with basic_auth using (HasAuthentication) driver.register((UsernameAndPassword.of("username", "password"))
When using basic_authentication
(HasAuthentication) driver.register((UsernameAndPassword.of("username", "password"))
the upload file using sendkeys to html input type=file cause ...
0
votes
0
answers
23
views
How to implement a feature that reduces the speed of automated test execution in selenium without using any kind of waits
I guess everyone has faced it Sometimes the text scripting execution are pretty fast enough and we cant see them also because of speed and synchronisation we get quite a few failures which are not ...