Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
65 views

while True: user = str(list.readline()) if not user: break web.get(baseeitaa + user) # text bar textbar = web.find_element(By.XPATH, '//*[@id="column-center"]/div/...
محمد مهدی شیخی's user avatar
1 vote
1 answer
1k views

My google chrome updated to version 137.0.7151.41 (Official Build) (64-bit). I'm using the chrome driver version 137.0.7151.40 from this url: https://storage.googleapis.com/chrome-for-testing-public/...
John's user avatar
  • 6,327
0 votes
1 answer
463 views

I am trying to automate Chrome using Selenium by creating a new Chrome profile, copying the contents of the Default profile, and launching it with Selenium to retrieve cookies. However, I keep ...
Farhan Ahmed's user avatar
4 votes
0 answers
819 views

I'm trying to automate Google Chrome 136 using Selenium 4.25.0 in Python to access https://aistudio.google.com using my existing, logged-in "Default" Google Chrome profile. Previously, I was ...
STATTHINGY TRENTON's user avatar
0 votes
0 answers
101 views

Yesterday my computer automatically updated the Chrome browser and the latest version was 136.0.7103.93 (Official Build) (64-bit). After that my Selenium code stopped working. This is my code: ...
Davron Smith's user avatar
1 vote
1 answer
227 views

Getting the following error on my Mac: selenium.common.exceptions.WebDriverException: Message: Can not connect to the Service /Users/michaelgelberg/.wdm/drivers/chromedriver/mac64/136.0.7103.92/...
Michael Gelberg's user avatar
0 votes
0 answers
61 views

I have services running on docker containers: -Python-Behave -Selenium -Chrome driver I am trying to run the python container with a proxy. There is some problem when i try to reach the URL over the ...
Varun Bharadwaj's user avatar
1 vote
1 answer
463 views

I have several automation scripts that I need to access my chrome profile for it to work, but when I went to run today, all my scripts that I need chrome automated with my profile logged in this error ...
Soft Visitantes's user avatar
0 votes
0 answers
49 views

Is there a way to disable the WebAuthn-API in the ChromeDriver? I tried to add an extension, but this did not work. final ChromeOptions options = new ChromeOptions(); options.addArguments("--load-...
user871611's user avatar
  • 3,472
1 vote
2 answers
192 views

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 ...
teeeeee's user avatar
  • 785
1 vote
1 answer
107 views

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 ...
fozan javaid's user avatar
0 votes
2 answers
149 views

I do not understand which versions fit together here. Currently I use: <dependency> <groupId>org.seleniumhq.selenium</groupId> <artifactId>selenium-java</artifactId&...
micgn's user avatar
  • 264
0 votes
1 answer
358 views

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

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 ...
user3424778's user avatar
0 votes
2 answers
415 views

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 ...
john Lennon's user avatar
0 votes
0 answers
37 views

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

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 ...
Kahn's user avatar
  • 441
0 votes
0 answers
28 views

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) { ...
Karishma's user avatar
2 votes
1 answer
146 views

I have a FastAPI server with a Slack chatbot that launches Selenium for automating certain tasks. However, I'm encountering an issue when initializing the ChromeDriver with the --user-data-dir ...
miorey's user avatar
  • 1,000
0 votes
1 answer
256 views

I've recently updated from Selenium 4.27.0 to 4.29.0 and I am getting the following error when trying to run a Selenium test: org.openqa.selenium.SessionNotCreatedException: Could not start a new ...
threenplusone's user avatar
0 votes
0 answers
52 views

Our team is experiencing an issue with Selenium in Ruby that web page does not load when using Chrome browser in headless mode, page loads properly when running test with head. Also, we noticed that ...
Aleks Merem's user avatar
0 votes
0 answers
105 views

I have some code where clicking on a button will open the aspx page in a new tab. I'm able to download a valid pdf file by clicking on download icon in chrome viewer. The URL is dynamic and its query ...
Bhavya S's user avatar
0 votes
0 answers
21 views

I have found the product name ID and checked that it's neither hidden nor missing. However, when I call the function to retrieve the ID, it says the ID cannot be found. Are there any ways to fix this ...
Fish Wudden's user avatar
0 votes
0 answers
186 views

i am currently trying to run a python script that navigate on the web with selenium and get the html of the product page on a web site and then do scraping to collect info. The info are stored in a ...
realtalker's user avatar
0 votes
2 answers
499 views

I have a fairly basic scraper set up to loop through a list of real estate agent profiles on Homes.com. My scraper worked consistenly for months, but then sporadically starts getting these sporadic ...
Ben's user avatar
  • 93