14,958 questions
1
vote
1
answer
49
views
Can't find HBO Max sign-in, "unable to locate element" error
I'm trying to make a automation that logs into https://auth.hbomax.com/login, however I keep getting the below error as the code can't locate the sign-in element.
selenium.common.exceptions....
0
votes
1
answer
67
views
Web Automation w/ Selenium
I'm trying to automate sending a tweet via Selenium (Python) and while I'm able to access the page using my existing chrome profile, I'm not able to access any elements and what's more is that it ...
0
votes
0
answers
147
views
Why is my Selenium ChromeDriver crashing with Docker?
I have a service on my application that is scrapping a webpage to obtain some information with Selenium. I have run it without Docker and with Docker in my PC.
I am now working on deploying it with ...
0
votes
1
answer
84
views
Can't find elements when a pdf is opened in tab (chromedriver)
When I open a PDF file via a normal link (e.g., https://unec.edu.az/application/uploads/2014/12/pdf-sample.pdf), Chrome opens the PDF in the same tab with Chrome's integrated PDF viewer component.
In ...
2
votes
1
answer
37
views
Cannot access 'iwe-autocomplete' element in html with selenium
Website photo with search box visible.
So, this is the website
https://sa.ucla.edu/ro/public/soc
There is a dropdown menu for selecting subject area where I need to write subject and i will receive ...
0
votes
0
answers
68
views
new verison of chromedriver returns org.openqa.selenium.SessionNotCreatedException: Could not start a new session
I moved the application to a new server and now the following error occurs every time you use selenium
e=org.openqa.selenium.SessionNotCreatedException: Could not start a new session. Response code ...
1
vote
1
answer
127
views
Selenium ChromeDriver error: "Unable to discover open pages", "failed to connect to Chrome"
TL;DR: New Selenium sessions fail with "unable to discover open pages", and the ChromeDriver log ends with "Failed to connect to Chrome. Attempting to kill it."
Here's how I'm ...
0
votes
1
answer
108
views
How to use Selenium on headless Raspberry Pi
I am trying to get Selenium (v. 4.35.0) working on my headless Raspberry Pi.
I installed Chromium and Chromedriver on the Pi. In my usr/bin/ directory I have chromedriver, chromium, and chromium-...
0
votes
0
answers
116
views
Selenium Chrome browser hangs and becomes unresponsive after processing a few profiles [duplicate]
I’m using Selenium with a custom Chrome setup via undetected_chromedriver, and I run into a critical issue during automated browsing sessions.
After successfully processing around 5–6 LinkedIn ...
1
vote
1
answer
161
views
Selenium with chromedriver blank (White) screenshots in headless mode (Working on firefox)
Currently running selenium with Chrome version 140.x.
Im trying to take a screenshot of the following page (More specifically the displayed ads) but the content inside the ad is not loading - rather ...
0
votes
1
answer
73
views
prevent selenium from loading whole page using vba
driver.get "https://www.ambito.com/contenidos/dolar.html"
I want to stop loading after a determined amount of time or once I've got the elements that I need. I tried lots of things, but &...
1
vote
2
answers
145
views
NoSuchWindowException with Python and Selenium
I have the following Python code:
async def signIn():
"""Signs in to test environment based on the credentials provided with the developer tools open and logging started
"&...
1
vote
0
answers
130
views
azure function with selenium not working gives internal server 500 error
Here my http_trigger test function seems to run smoothly and is able to write files as expected to my azure blob storage, however when I test extract_signals which uses now a full blown headless ...
0
votes
1
answer
47
views
Why does MoveToElement + Click not work, while IJavaScriptExecutor + Clik does?
Novice here, using Selenium 4.34 on .NET 8.0.
Automation test page used: https://demoqa.com/
Sudo:
Open Chrome
Go to URL
Click Book Store Application
Whole script:
using OpenQA.Selenium;
using ...
0
votes
1
answer
172
views
can't make undetected-chromedriver work on mac
I get Error: Message: session not created: cannot connect to chrome at 127.0.0.1:55046
when running:
import undetected_chromedriver as uc
from selenium.webdriver.common.by import By
from selenium....
0
votes
2
answers
70
views
Text box value not getting cleared correctly
I have a text field with "textA", I simply want to clear the text and enter "textB"
I have used
TextField.clear() and
TextField.SendKeys(Keys.Control + "a");
TextField....
0
votes
1
answer
734
views
How do I disable this warning from abseil in selenium python when using chromedriver?
This is the code that I tried to run
from selenium import webdriver
options = webdriver.ChromeOptions()
options.add_argument('log-level=3')
driver = webdriver.Chrome(options=options)
driver.get("...
0
votes
1
answer
133
views
org.openqa.selenium.SessionNotCreatedException: Could not start a new session
My selenium setup is:
WebDriverManager.chromedriver().setup();
ChromeOptions ops = new ChromeOptions();
ops.addArguments("--remote-allow-origins=*");
ops.addArguments("--disable-popup-...
0
votes
0
answers
89
views
How can I get Chrome debug or network logs using RemoteWebDriver in Selenium Grid? Console logs work locally but not from remote nodes
I’m trying to capture browser logs during test execution. When I use local WebDriver, I can access these logs using:
GeckoDriverService service = new GeckoDriverService.Builder()
....
1
vote
0
answers
95
views
How to use Java Selenium ChromeDriver to passed Cloudflare bot checking?
I know this question has been asked many times, but all I found is using Python programming which is I am totally not familiar.
I also follows this article to add Request headers, and this to ...
1
vote
1
answer
122
views
I'm getting an "element not interactable" error in selenium, how do I fix it?
I'm new to Selenium. I am trying to interact with the search bar of this website: https://www.careerjunction.co.za, in order to have the user of my program search for some job, and then scrape the ...
1
vote
0
answers
92
views
Why does 'undetected_chromedriver' stop working when a new version is released?
I have a Dockerfile where both Chrome and Python 3 are installed, and in requirements.txt I have selenium==4.23.1 and undetected_chromedriver==3.5.5. After some time (without having rebuild the image ...
0
votes
0
answers
101
views
.NET Selenium Driver with Authentication - Handling Authentication Failure
With .NET and Selenium, I'm using Chrome drivers to navigate pages and retrieve their content.
Consider the following code where I use basic authentication to retrieve a page content. I'm targeting ....
0
votes
0
answers
39
views
kiosk printing not working in Chrome 136.0.7103.114
I was using
options.addArguments("--kiosk-printing");
in my test when initializing Chrome driver everything was working fine for months and now I cannot get this to work anymore the print ...
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-...