23 questions from the last 30 days
1
vote
1
answer
117
views
Custom Proxy Extension stopped working with undetected-chromedriver
I have proxy (with auth) realisation via adding Chrome Extension as it is described here:
https://www.browserstack.com/guide/set-proxy-in-selenium
It worked fine. But recently I've started to get a ...
1
vote
2
answers
112
views
Can't close cookie pop up on website with selenium webdriver
I am trying to use selenium to click the Accept all or Reject all button on a cookie pop up for the the website autotrader.co.uk, but I cannot get it to make the pop up disappear for some reason.
This ...
2
votes
1
answer
70
views
Cookie cannot be added to website in selenium
from selenium import webdriver
from selenium.webdriver.chrome.service import Service
from selenium.webdriver.chrome.options import Options
import json
import time
service = Service(executable_path=f&...
0
votes
0
answers
140
views
Selenium Download Not Working in Java + Spring Boot Project (Chrome 135, Selenium 4.31.0)
I'm building a Java 21 + Spring Boot 3 automation project where I use Selenium to automate Chrome. The Chrome browser opens correctly via ChromeDriver, everything was working a month ago, but now file ...
0
votes
2
answers
69
views
Can't interact with checkboxes and button
In this URL: http://estatisticas.cetip.com.br/astec/series_v05/paginas/lum_web_v05_template_informacoes_di.asp?str_Modulo=completo&int_Idioma=2&int_Titulo=6&int_NivelBD=2/
I'm trying to ...
0
votes
0
answers
94
views
Selenium chromedriver not working in AWS EKS but works fine locally
I am scraping data from many web pages. I am processing the web pages in batches. It works fine when I run it locally as devcontainer in vscode, but when I run it in AWS EKS as a job, its processing ...
0
votes
1
answer
118
views
System.InvalidOperationException : session not created: This version of ChromeDriver only supports Chrome version 135
I know there are so many threads regarding this but my issue is a bit different.
My Browswer version is 134.0.....
My ChromeDriver Version is 134.0...
and Chrome Version 135 is not available yet for ...
-1
votes
2
answers
76
views
I wanted to get the number of playoff games of a list of 200 players from Basketball Reference. The code I wrote is giving me 0 value for all players [closed]
I want to get the number of playoff games played by a list of players. To do that I used Selenium and Beautiful Soup. The result is being saved in a csv file but the values for each of the player is ...
-7
votes
0
answers
65
views
Huge internet usage by chrome and chromedriver [closed]
I am using selenium version 4.31.0 with chromedriver and chrome version 129 for scraping through python. I run out simple scraper which scrape from multiple urls. But within 5 minutes it consumed up ...
1
vote
0
answers
47
views
executing javascript function with chromedriver and c#
I have a button that I need to click to open up file explorer and select a file. The entire page is JavaScript functions and there is no button id or name that comes up in the html
I tried:
myField = ...
0
votes
1
answer
43
views
Selenium script for Amazon UK postcode entry triggers CAPTCHA and fails to apply zip code
Automating Amazon UK with Selenium: Handling CAPTCHA, Setting Postcode, and Extracting Product Data
I'm automating Amazon UK (www.amazon.co.uk) using Selenium to:
Decline cookies (if present).
Click ...
0
votes
1
answer
46
views
AWS Lambda Selenium Error in C# : WebDriverException - Exec format error running Chrome
I am trying to download a file from Chrome using the Selenium library in C#. It works locally, but when I deploy the Lambda function on AWS, it throws an error:
Exception Type: WebDriverException,
...
0
votes
1
answer
40
views
Rotating Authenticate Proxy In Selenium Using Chrome Driver
import zipfile
import json
import os
from selenium import webdriver
from selenium.webdriver.chrome.options import Options
from selenium.webdriver.common.by import By
import time
def ...
0
votes
1
answer
66
views
selenium does not download chromedriver itself
I am building a google image scraper using python selenium. I have selenium 4.8.0, so I guessed I didn't need webdriver_manager to download chromedrivers. But selenium is giving me some errors.
...
0
votes
2
answers
44
views
Which Selenium WebDriver version for which Chrome version?
I do not understand which versions fit together here. Currently I use:
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-java</artifactId&...
0
votes
1
answer
41
views
Download multiple files using CDP command
I am trying to download a couple of files using CDP but when I fetch the downloaded file using Download.getLastCompleted, it gives me the first file ID only. So, I added a wait for it but it never ...
0
votes
0
answers
54
views
chromedriver version :134.0.6998.178
I’m working on a Selenium automation project and currently using Google Chrome version 134.0.6998.178 on my machine. However, I’ve been running into an issue where I cannot find a corresponding ...
0
votes
0
answers
32
views
Selenium chromium browser sometimes not opens a page
I have chromium and chrome-driver installed with necessary requirements in my Dockerfile and am running the automation code inside container, It works for some operations and it would not work for ...
0
votes
0
answers
38
views
How to handle proxies authentication pop-up using seleniumbase
I'm trying to use an authenticated proxy with seleniumbase (I'm using python) while running the browser in undetected Chrome (uc=True). However, despite trying multiple approaches, I'm unable to get ...
0
votes
0
answers
24
views
Selenium 4 -Displaying org.openqa.selenium.remote.http.WebSocket$Listener onError java.net.SocketException: Connection reset
Below is the code and it is simple selenium code. Using Maven build tool. Chrome version is 134.0.6998.178
public class FirstTestCase {
public static void main(String[] args) {
...
-1
votes
0
answers
42
views
ChromeDriver fails with SessionNotCreatedException after switching to non-root user in Docker
My ChromeDriver integration in a Docker container was working perfectly until I switched from root to a non-root user using:
USER new_user
Now I get this error:
org.openqa.selenium....
0
votes
0
answers
21
views
Chromedriver executeCustomCommand get base64 encoded from PDF output using pagedjs rendered HTML
I'm using pagedjs to render my invoice sample (using table, tr, td, th, etc...)
I use chromedriver v 135.0.7049.84 to open a headless browser and having export pdf from my html using polyfill pagedjs ...
0
votes
0
answers
27
views
In Safari browser automation, Using selenium how to disable "Prevent cross site tracking"
In Safari Browser Outlook Web App, Opening Addin should set cookies in browser. "Prevent cross site tracking" option should be disable to set cookies. Manually On disabling "Prevent ...