Alternative of chromedriver

symonkings

Regular Member
Joined
Mar 7, 2024
Messages
494
Reaction score
152
I need alternative of chromedriver, for web automation.

Reason: I have a old laptop from 2010 with windows 7 and the chromdriver not work on it I try so many times that's why.
 
Last edited:
Chromedriver is the most used, including for things that need stealth. Why do you need an alternative?
 
I need alternative of chromedriver, for web automation.
Try
Code:
https://github.com/SeleniumHQ/selenium/wiki/FirefoxDriver
Code:
https://github.com/mozilla/geckodriver
etc

Why are you looking for an alternative btw? If you add more context, you might get a better reply.
 
Chromedriver is the most used, including for things that need stealth. Why do you need an alternative?
I have a old laptop from 2010 with windows 7 and the chromdriver not work on it I try so many times that's why.
 
Try
Code:
https://github.com/SeleniumHQ/selenium/wiki/FirefoxDriver
Code:
https://github.com/mozilla/geckodriver
etc

Why are you looking for an alternative btw? If you add more context, you might get a better reply.
Check above
 
I have a old laptop from 2010 with windows 7 and the chromdriver not work on it I try so many times that's why.
Perhaps try dual booting the machine with Ubuntu, and try to run chromedriver in ubuntu instead of windows. That should do it. Hardware wise, chromedriver runs even on weak hardware like a raspberry pi 4.. A laptop should be perfectly capable of running it.
 
Playwright with Firefox, Selenium with Internet Explorer Driver. Since you're on Windows 7, you might be able to use Internet Explorer with Selenium.
 
Take a laptop or a used work computer with 16 gb of RAM on installments or something. Don't get yourself into that situation next time of having only 2010 computer. That's no way to live, man.

If you have to work on a 14 year old computer and automate stuff, you first got to do manual work to get a computer.

This is a wrong order of things.
 
There used to be something called undetected chromedriver and is most likely still around. It's a great alternative to the normal chromedriver.
 
You can use selenium-driverless, works without chromedriver. you just need a chromium based browser installed
 
Back
Top