robocorp / rpaframework

Collection of open-source libraries and tools for Robotic Process Automation (RPA), designed to be used with both Robot Framework and Python
https://www.rpaframework.org/
Apache License 2.0
1.16k stars 223 forks source link

RPA.Browser.Seleniun can't read the latest Chrome webdriver #1200

Open fpizarro91 opened 3 months ago

fpizarro91 commented 3 months ago

the latest chrome webdriver added a file called THIRD_PARTY_NOTICES and this leads to the error “Webdriver version couldn't be read due to: [WinError 193] %1 is not a valid Win32 application". Any solution for this error?

mikahanninen commented 3 months ago

Workaround for this is to download correct driver from here and place it into stable location and use executable_pathparameter to point into correct driver executable.

Another issue with Chrome browser which affect automations is the new search engine selection popup on browser startup. That can be handled by adding new startup argument to Chrome options options.addArguments("–disable-search-engine-choice-screen");

gonultasbu commented 3 months ago

same issue

gotoshekar commented 3 months ago

Same issue occurs even after using both 32bit and 64 bit chromedriver zips in robot_runtime's webdrivers path.

freesurfer33 commented 3 months ago

Hello, Same problem despite workaround.

muzicao commented 3 months ago

Same issue. Update webdriver-manager to 4.0.2 seems to work but has conflict with rpaframework. https://stackoverflow.com/questions/78789819/issue-with-selenium-and-webdriver/78796998 image

realJDofficial commented 2 months ago

@mikahanninen Is it possible to add the executable path with the Open Available Browser keyword?

gonultasbu commented 2 months ago

this solution from stackoverflow worked for me:

https://github.com/SergeyPirogov/webdriver_manager/issues/665#issuecomment-2271582009

realJDofficial commented 2 months ago

Thank you, @gonultasbu, but I have profound stuff to work with, which are based on the RPA.Browser.Selenium library. I managed to make the Open Browser keyword work with my settings, which directly has the parameter to give executable_path.

austinulfers commented 2 months ago

Same issue. Update webdriver-manager to 4.0.2 seems to work but has conflict with rpaframework. https://stackoverflow.com/questions/78789819/issue-with-selenium-and-webdriver/78796998 image

Updating to 4.0.2 worked for me.

raivolink commented 2 months ago

Latest rpaframework 28.6.2 includes webdriver-manager 4.0.2 https://updates.robocorp.com/release/51XaM-rpa-framework-2862 It is recommended to remove existing drivers under %LOCALAPPDATA/robocorp/webdrivers folder when taking this new release into use.