โ† All release notes

August 8, 2024 ยท RPA Framework

๐ŸŽ‰ RPA Framework 28.6.2

  • Update rpaframework-core to version 11.3.3 including webdriver-manager upgrade to version 4.0.2. This should fix the issue with downloading the latest Chrome driver version.

  • (in rpaframework 28.6.1) Library RPA.Robocorp.Vault (#1199): Proper error message if caused by SSL truststore patching bug.

Couple of reminders when using Selenium browsers and handling webdrivers:

  • the matching webdriver can be always placed into robot root folder and that will be used if it is compatible with the selected browser (can be downloaded from here). BUT remember that open_available_browser method will automatically try to download and use correct webdriver

  • the Chrome's new search engine selection startup popup can be bypassed by giving argument for the Chrome (examples in Python and Robot Framework syntax)

Python

library.open_available_browser("https://www.sema4.ai", browser_selection="Chrome", options='add_argument("-disable-search-engine-choice-screen")')

Robot Framework

Open Available Browser https://www.sema4.ai browser_selection=chrome options=add_argument("-disable-search-engine-choice-screen")