Skip to main content
Filter by
Sorted by
Tagged with
0 votes
1 answer
1k views

In my python script I am currently using webdriver_manager (text) to install the chrome webdriver. This webdriver is used to create a Selenium driver to navigate websites and collect HTML data. This ...
Roman De Santos's user avatar
0 votes
1 answer
128 views

When I use selenium in python to open a website in chrome it give me an Attribute Error This is my code : from selenium import webdriver from webdriver_manager.chrome import ChromeDriverManager ...
abd hadi Sakbani's user avatar
1 vote
1 answer
686 views

Even reading the github page, the role of this library is confusing. always install the latest chrome drivers checks the user's Chrome browser version and installs the appropriate Chrome driver. ...
newbieeyo's user avatar
  • 705
1 vote
0 answers
405 views

Now when using pytest-parallel lib the worker_id could not be found by this plugin since (a guess) this is only xdist compatible fixture to get worker id. `@pytest.fixture(scope='session') def ...
sutkyne's user avatar
  • 11
1 vote
1 answer
4k views

I have a python script where it autoinstalls chromedriver with ChromeDriverManager package. Today it gave me an error of: No such driver version 115.0.5790.110 for linux64 Line of code: driver = ...
miPythOff's user avatar
0 votes
1 answer
511 views

I am working on a Python script that needs to run in Databricks using Selenium and the webdriver_manager package. The script runs once a week using an Airflow DAG. Recently, I started encountering ...
random_name's user avatar
0 votes
3 answers
979 views

Executing below code: from selenium import webdriver from webdriver_manager.chrome import ChromeDriverManager browser = webdriver.Chrome browser.get('https://soysocio.bocajuniors.com.ar/index.php') ...
Lisandro Rodríguez's user avatar
1 vote
1 answer
163 views

from selenium import webdriver from webdriver_manager.chrome import ChromeDriverManager # here my google chrome doesn't open the entered url from user browser = webdriver.Chrome(ChromeDriverManager()....
Ouis AL-Hetar's user avatar
1 vote
0 answers
60 views

sorry if this is a dumb question, but I'm trying to figure out how to use Selenium to control Tor browser (which i understand is modified Firefox), but I can't find any instructions on how to do it on ...
Saqster's user avatar
  • 119
0 votes
1 answer
306 views

My code worked fine until a few days ago. But now I'm facing an error as follows: Fatal Python error: Cannot recover from stack overflow with the minimal code: Error: What's the cause of the sudden ...
joseph june's user avatar
1 vote
1 answer
2k views

Even with the ton of information about this, each solutions won't work for me, I'm trying to run a basic selenium script and I get this error. Is there any solutions for my case (note that i use 3.10 ...
Corentin Gauquier's user avatar
9 votes
6 answers
10k views

I have an error: E selenium.common.exceptions.SessionNotCreatedException: Message: session not created: This version of ChromeDriver only supports Chrome version 102 E Current browser ...
AnilD's user avatar
  • 101
3 votes
1 answer
6k views

Apologies I am quite new to all this so trying to figure out if I am doing the right thing. I am running Ubuntu 22.04 and Selenium 4.8 I installed latest Geckodriver from Mozilla GitHub, converted it ...
Gizmo's user avatar
  • 31
-2 votes
1 answer
187 views

from selenium import webdriver from selenium.webdriver import Keys from selenium.webdriver.chrome.service import Service from webdriver_manager.chrome import ChromeDriverManager from selenium....
Даниил Витковский's user avatar
1 vote
1 answer
397 views

I have a web scraper that uses Undetected Chromedriver & WebDriverManager to download & automate a Chromium webdriver. On Windows I initialize the Undetcted Chromedriver instance by passing ...
victorbrnk's user avatar
0 votes
1 answer
118 views

My problem is that I want to execute the whole code, but it just opens Chrome and stops the program. What could be the reason for this? I installed every package needed such as the chromedriver into ...
EnXan's user avatar
  • 31
0 votes
2 answers
570 views

After switching to ChromeDriverManager().install(),I am not able to use default profile.Any workaround there so that I can avoid logging in every time? driver = webdriver.Chrome(service=Service(...
Rajeev Kumar's user avatar
2 votes
1 answer
1k views

I'm trying to create a headless web scraper on cloud function. I have used Selenium to automate the driver provided by the Webdriver manager. Can you please tell me how to change the wdm.cachePath ...
Gradley bear's user avatar
0 votes
0 answers
745 views

My WebDriverManager appears to be attempting to fetch a chromedriver that is outdated, and I am not sure why. I've checked already that my Chrome is up to date. (107.0.5304.107 as of day of writing) ...
ZeeCeeCee's user avatar
1 vote
1 answer
1k views

I was trying some scraping using selenium, but when I try to run this code I got this error: The version I am currently working on. Python -- 3.7.13 Selenium -- 4.4.3 webdrivermanager -- 0.10.0 from ...
Dev's user avatar
  • 140
1 vote
2 answers
7k views

I've been using Selenium with the Edge Driver for some time. I've been instantiating my Edge Driver by specifying the executable_path= parameter with no issues. However, I recently switched my web ...
Kyle Deer's user avatar
  • 121
0 votes
1 answer
1k views

it's me again I'm having problem to run a selenium script coded in python, i have two users in Ubuntu Server, fabio user and rundeck user, In fabio user the script works perfect but in rundeck user ...
Fabio Rodrigues's user avatar
-1 votes
1 answer
12k views

I'm running this script: from selenium import webdriver from selenium.webdriver.chrome.options import Options from selenium.webdriver.chrome.service import Service from webdriver_manager.chrome import ...
Fabio Rodrigues's user avatar
10 votes
2 answers
27k views

I have this script to acess my internet modem and reboot the device, but stop to work some weeks ago. Here my code: from selenium import webdriver from selenium.webdriver.chrome.options import Options ...
Fabio Rodrigues's user avatar
1 vote
1 answer
2k views

I'm attempting to import WebDriverManager for Chrome, but this is what I get $ pip install webdriver-manager Defaulting to user installation because normal site-...
javery1337's user avatar
1 vote
1 answer
3k views

I am trying to run the webdriver for opera browser under selenium 4. I am using webdriver-manager in my project. The webdriver-manager docs suggest using webdriver.Opera: from selenium import ...
Ivan's user avatar
  • 173
0 votes
1 answer
2k views

I am facing an issue with webdriver-manager, for Firefox. This is my code. from selenium import webdriver from selenium.webdriver.firefox.service import Service from webdriver_manager.firefox import ...
Zenith_1024's user avatar
5 votes
2 answers
7k views

Using the sample test code from SeleniumHQ github, I tried to run this code: def test_firefox_session(): service = FirefoxService(executable_path=GeckoDriverManager().install()) driver = webdriver....
newbieInProgramming's user avatar
1 vote
1 answer
644 views

I don't know why but yeasterday and the day before it worked but today no. I changed nothing and the PATH is always at the same place. from selenium import webdriver from selenium.webdriver.firefox....
rocheteau's user avatar
1 vote
1 answer
2k views

I'm running a simple CI pipeline on GitLab for a Selenium script headlessly + using webdriver_manager to handle chrome driver binary. This part is passed: Get LATEST chromedriver version for None ...
Mohammad Monfared's user avatar
0 votes
1 answer
947 views

I am simply trying to get a webscraper working in a Civis container script ( Linux (Ubuntu 18.04) environment). I've tried a variety of things but this is the closest I've got and have no clue how to ...
Hamza Sait's user avatar
-2 votes
1 answer
999 views

Selenium4 Brave Webdriver_manager python My Issue: I want to use Selenium 4 on brave using webdriver_manager written in python. I went to https://pypi.org/project/webdriver-manager/ and installed ...
Ian Fischer's user avatar
4 votes
3 answers
16k views

I tried to fix the above error by check Stackoverflow and other resources from the internet. But I am getting the error. I have installed the webdriver_manager also. But I could not able to run the ...
vivek rajagopalan's user avatar
0 votes
1 answer
5k views

I made a web-scraping script using Selenium, Pandas, bf4 and GeckoDriver import requests from bs4 import BeautifulSoup from selenium import webdriver from selenium.webdriver.firefox.options import ...
MatheusHRV's user avatar
0 votes
6 answers
6k views

When I'm launching a new selenium driver I get a message as: ====== WebDriver manager ====== Current chromium version is 90.0.4430 Get LATEST chromedriver version for 90.0.4430 chromium Driver [/root/....
Ezriel_S's user avatar
  • 278
1 vote
1 answer
6k views

I am creating a project to automatically open a page, and I installed Selenium, but it says that there: no such module as webdriver_manager And the directory "C:\Users\Nina\chromedriver.exe&...
Nathaniel Lin's user avatar
3 votes
3 answers
11k views

I am using Python Selenium framework. In here, to launch the chrome browser, instead of giving chrome binary (chrome.exe) path, I am trying to use WebdriverManager to get the latest version of Chrome ...
user1865709's user avatar
3 votes
4 answers
11k views

Web scraping with selenium works fine on my mac local machine but when I push to live Ubuntu server, I get the following error Could not get version for Chrome with this command: google-chrome --...
Zohaib Shamshad's user avatar
5 votes
4 answers
3k views

There is a similar question here, but that is for Java. I wish to suppress the following: INFO:WDM:====== WebDriver manager ====== INFO:WDM:Current google-chrome version is 88.0.4324 INFO:WDM:Get ...
Mate Mrše's user avatar
  • 8,524
0 votes
1 answer
431 views

I tried below code but its downloaded and save it the path we configured in pip list [2nd line of code]. Instead of auto download in my local machine, I want to download directly into project ...
Pari's user avatar
  • 39
0 votes
1 answer
1k views

Currently I'm downloading exe files manually and using for browser launch in Python Robot framework. I just want to upgrade it auto download using Webdriver Manager. I tried below code but its ...
Pari's user avatar
  • 39
44 votes
16 answers
200k views

I've installed webdrivermanager on my windows-10 system C:\Users\username>pip install webdrivermanager Requirement already satisfied: webdrivermanager in c:\python\lib\site-packages (0.8.0) ...
undetected Selenium's user avatar
5 votes
1 answer
3k views

from selenium import webdriver from webdriver_manager.chrome import ChromeDriverManager driver = webdriver.Chrome(ChromeDriverManager().install()) driver.get("http://www.python.org") driver....
garg_ak0109's user avatar