1,846 questions
0
votes
0
answers
45
views
Why does KEDA create a second Selenium Node for the second Chrome session instead of using available slots on the first node
I'm running Selenium Grid in Minikube using the official Docker Selenium Helm chart, with KEDA enabled for autoscaling. My goal is to scale Chrome nodes based on session demand, where each node can ...
0
votes
0
answers
67
views
How to start Selenium standalone server from a PHP script?
In my PHP script I am using php-webdriver library with Edge webdriver to get data from a web page and I need to start Selenium standalone server from the script. I copied selenium-server-4.35.0.jar, ...
1
vote
0
answers
250
views
Error: {"code":-32000,"message":"Browser window not found"} with usage --auto-open-devtools-for-tabs
everyone, after updating chromedriver from 136 to 137, I caught:
{"code":-32000,"message":"Browser window not found"}
I found that the problem with --auto-open-devtools-...
-2
votes
3
answers
423
views
Unable to Solve ReCAPTCHA v2 with CapSolver (ReCaptchaV2Classification) – Always Returning False - Python
I'm trying to solve a ReCAPTCHA v2 challenge using CapSolver with the ReCaptchaV2Classification task type.
However, whenever I call the CapSolver API, the response is always false, and the images are ...
-1
votes
1
answer
56
views
line with sudo command is keep iteration when started with pm2 [closed]
!/bin/bash
cd /home/pi/dockertest
sudo -S <<< Adminpassword docker-compose up -d --scale chrome=2 --scale firefox=0
I want to add a script to pm2 to start the SeleniumGrid. So I have created ...
0
votes
1
answer
233
views
Selenium video container not capturing video
I'm attempting to record a video from a Selenium test and so far, it's not working.
I can see my test progressing using NoVNC on port 7900
Test completes with expected assertions in VSCode's terminal
...
-2
votes
1
answer
51
views
Not able to click on dropdown value of lightening elements
I tried below XPath for selecting dropdown and clicking on value "Financier". But nothing is working.
<div class="slds-dropdown-trigger slds-dropdown-trigger_click" data-aura-...
0
votes
1
answer
515
views
While running Playwright on Selenium Grid, the file is downloaded in node machine but not showing in Selenium Grid session GET request
I am working on file downloading functionality with Playwright and Selenium Grid (in Java). Through Selenium Grid VNC, I see that the file is downloaded on my node machine.
Now I want to move the file ...
0
votes
1
answer
86
views
Unable to trigger selenium scripts on selenium grid, working on local
I am running selenium python script through Selenium Grid, but it throws error
selenium.common.exceptions.WebDriverException: Message: Unable to find resource, invalid path in url."
Below is ...
2
votes
1
answer
622
views
How to Display Live Preview of Running Tests Using Selenium/Node Container's noVNC Feature
Using selenium/node-docker and selenium/hub how can I access to the novnc live preview displayed on http://<node-ip>:7900?autoconnect=1&resize=scale&password=secret
here's my docker-...
0
votes
1
answer
102
views
Selenium grid requests time out, don't execute. Python Multiprocessing
I'm writing a webscraping program in Python 3.12 using Selenium and multiprocessing. I am setting up selenium grid using docker and using that to run multiple selenium instances in parallel. However, ...
0
votes
1
answer
299
views
Selenium - SessionNotCreated could not start a new session. possible causes are invalid address of the remote server or browser start-up failure
I am facing this error while integrating the selenium with docker and azure pipeline.
SessionNotCreated could not start a new session. possible causes are invalid address of the remote server or ...
0
votes
1
answer
241
views
Selenium Grid executed inside Docker doesn't download file automatically
I'm trying to deploy an application that uses Selenium to download PDF files from a web page. If I run my containers locally, the one with my Python application and the other with Selenium Grid, it ...
0
votes
1
answer
2k
views
Unable to run Selenium BiDi components using Remote Webdriver
My code works fine and the WebDriver BiDi protocol is functioning correctly with the local ChromeDriver instance. But when I use a RemoteWebDriver instance connected to a Selenium Grid/Server, I get ...
2
votes
1
answer
1k
views
How to efficiently control multiple android devices in parallel with python?
I am working on a project that involves simultaneously controlling multiple Android devices from a Python script. During testing, I’m encountering challenges in implementing effective multithreading ...
2
votes
0
answers
631
views
how to get selenium-grid node id and dockers-novnc port id mapping
I have started selenium docker compose file with novnc enabled and scaled the browser from 1 to 3.
I can get the session id and node id from the api http://localhost:4444/status. But is there any way ...
1
vote
2
answers
121
views
Running two selenium driver instances in parallel, but the both operate on the same chrome window
I try to run two driver instances (RemoteWebDriver) in parallel using selenium standalone or grid to operate on two different windows/websites at the same time.
Two sessions and two windows are ...
0
votes
1
answer
855
views
simple Se v4 Grid, node is stuck at “Sending registration event”. How to diagnose?
I’m transitioning a small Grid setup with a hub and two nodes to a new hub. The problem I have is that the node is stuck at “Sending registration event” for the new hub.
I have the logging set at ...
0
votes
0
answers
110
views
no. of nodes keep fluctuating in selenium grid
I am using docker swarm based selenium grid, the same docker compose used to work on azure based VM's but on GCP is giving issue. All the nodes come up when I deploy the grid but as tests start ...
1
vote
0
answers
92
views
detect react native android app crash using webdriver-io
I'm pretty new at my work using appium, webdriverio and selenium grid. Trying to improve error handling and logging on our test framework.
Is there a way of checking if the app has crashed within the ...
0
votes
1
answer
241
views
Executing commands via PHP exec on Ubuntu
I want to run a linux command via PHP exec() and my first command below executing in background at Ubuntu Server 22.04 perfectly -
<?php
$cmd = "java -jar /var/www/html/selenium-drivers/...
-1
votes
1
answer
48
views
I can't able to create a node in my local machine
I am using selenium grid concept to execute my developed scripts on my own machine.
I have downloaded the latest version of the selenium grid which is 4.12.1V.
I have created a hub on my machine ...
0
votes
0
answers
187
views
Timestamp of 'responseReceived()' in Selenium DevTools
While using Selenuim i want to analyse all responses. Therefor i am using the chrome devTools.
import org.openqa.selenium.devtools.v109.network.*;
I am using this Listener setup:
devTools.addListener(...
2
votes
1
answer
436
views
python selenium grid desired_capabilities TypeError
I'm trying to do cross browser test with selenium grid and when I typing webdrive.Remote(command_executor, desired_capabilities) it shows me that desired_capabilities is Unexpected argument and when ...
0
votes
1
answer
459
views
Error with Docker File Running Seleniarm as Base
Hi I am trying to create a docker file with seleniarm as base image (using raspberry pi so need multiarch), and adding python to it. This is my file:
# Use the Selenium base image
FROM seleniarm/...