adi-prasetyo
adi-prasetyo
I've also encountered similar problem ``` from selenium import webdriver from webdriver_manager.chrome import ChromeDriverManager from selenium.webdriver.chrome.service import Service as ChromeService driver = webdriver.Chrome(service=ChromeService(ChromeDriverManager().install())) driver.get('https://test.com/Login/') ``` ``` --------------------------------------------------------------------------- OSError Traceback (most...
Found the solution, just use this instead ``` driver = webdriver.Chrome() ``` rather than webdriver_manager. Seems selenium has now been able to auto update the driver
> [@gilbarbara](https://github.com/gilbarbara) What is the plan to generate the version with React 19 support? Is there any adjustment that needs to be made, or is it just a matter of...
> I gave up on this and migrate to [driver.js](https://driverjs.com/). It is a Javascript library so you need to integrate with React yourself not too complicated though but this means...