1,142 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
1
vote
2
answers
99
views
What replaces the deprecated page.type method in playwright?
I noticed that page.type is deprecated in Playwright. Google's AI overview told me that I need to use locator.fill instead but it isn't working for the field I want to fill.
await this....
-8
votes
2
answers
119
views
How to automatically approve Perplexity GitHub Connector popups on the web UI?
I'm using Perplexity web UI (https://www.perplexity.ai/) with the GitHub Connector to automate code edits and commits. Every time I ask Perplexity to create/update files or make changes, an "...
0
votes
0
answers
285
views
Problem launching chromium with remote-debugging-pipe from python
I was trying to launch chromium browser using remote-debugging-pipe in python,
but there is a problem everytime I tried to do so,
I am using this code,
I got help from gemini and chatgpt but they don'...
0
votes
0
answers
114
views
WebdriverIO v9 Error: Failed to fetch [POST] /session – WebDriver compatible server not running
I ran the following command in the terminal:
npm init wdio@latest . -- --yes
However, I encountered an error during the setup. Here’s what I’ve already tried:
Updated Chrome browser to version 138.0....
-1
votes
3
answers
435
views
python -playwright mouse pointer UI enable
I want a playwright python mouse UI enable script.
so can i can see my mouse to be working in visual for my humanize automation.
if any one can provide me any method or js script that will work plz ...
0
votes
3
answers
83
views
Python Selenium is not able to open Chrome driver when having options in parameters
i wanted to start experimenting with selenium with python to automate a few stuff. But i can only open Edge when i place in the options parameter (which i believe still does not work properly). I can ...
0
votes
2
answers
123
views
Selenium can't click visible <button> with text "Download All"
I'm trying to click a "Download All" button using Selenium in Python. Here's the relevant HTML from inspect:
<button title="" type="button" class="bds-button ...
0
votes
1
answer
4k
views
Playwright install fails on Ubuntu 24.04 due to missing system dependencies, even after installing recommended packages
I'm trying to set up Playwright for Python on Ubuntu 24.04 (Noble Numbat).
Here are the steps I followed:
Created a virtual environment:
python3 -m venv venv
source venv/bin/activate
Installed ...
2
votes
1
answer
98
views
HttpsConnectionPool Error Selenium: while paste 3000 ids from column in a csv file using Selenium in input field of a URL. Works well for 200 ids
I am using selenium to automate a downloading of a report. for that i need to paste around 3000 ids in a loop for ids around 300 000 into a input field of a webpage and click download button and wait ...
0
votes
0
answers
48
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
59
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
35
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
152
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
492
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 ...
2
votes
1
answer
246
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 ...