Skip to main content
Filter by
Sorted by
Tagged with
1 vote
1 answer
49 views

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....
FirePunch's user avatar
0 votes
1 answer
67 views

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 ...
Kamen Yin's user avatar
0 votes
0 answers
147 views

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 ...
Carlos Lavilla's user avatar
0 votes
1 answer
84 views

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 ...
bar2's user avatar
  • 10
2 votes
1 answer
37 views

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 ...
Rohit Kasturi's user avatar
0 votes
0 answers
68 views

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 ...
Ryan 's user avatar
1 vote
1 answer
127 views

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 ...
J. Perkins's user avatar
  • 4,348
0 votes
1 answer
108 views

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-...
micawber's user avatar
0 votes
0 answers
116 views

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 ...
user31453782's user avatar
1 vote
1 answer
161 views

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 ...
Jeppe Christensen's user avatar
0 votes
1 answer
73 views

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 &...
Santos Lee's user avatar
1 vote
2 answers
145 views

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 "&...
Kevin McDowell's user avatar
1 vote
0 answers
130 views

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 ...
Mig Rivera Cueva's user avatar
0 votes
1 answer
47 views

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 ...
radoslawix's user avatar
0 votes
1 answer
172 views

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....
Rony Tesler's user avatar
  • 1,396
0 votes
2 answers
70 views

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....
osullda's user avatar
0 votes
1 answer
734 views

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("...
Shi kaimao's user avatar
0 votes
1 answer
133 views

My selenium setup is: WebDriverManager.chromedriver().setup(); ChromeOptions ops = new ChromeOptions(); ops.addArguments("--remote-allow-origins=*"); ops.addArguments("--disable-popup-...
Mandroid's user avatar
  • 7,778
0 votes
0 answers
89 views

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() ....
nisha m's user avatar
1 vote
0 answers
95 views

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 ...
Kunto Fullstack's user avatar
1 vote
1 answer
122 views

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 ...
no-one's user avatar
  • 20
1 vote
0 answers
92 views

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 ...
limitIntegral314's user avatar
0 votes
0 answers
101 views

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 ....
sfeng's user avatar
  • 105
0 votes
0 answers
39 views

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 ...
Compass55's user avatar
1 vote
0 answers
250 views

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-...
VVV's user avatar
  • 85

1
2 3 4 5
300