I’m in the process of enabling the webapp integration tests again (Webapp Tests not runnable for Tomcat · Issue #930 · operaton/operaton · GitHub). While doing so, I realized that the current setup for getting the Chromedriver might be improved. Currently there is a fixed version in the pom files (version.chromedriver) which is rather old. This gets downloaded to the /target folder and is used by selenium. We could change it to always fetch the latest version, but the crhomedriver version has to be in sync with the installed Chrome browser, and on local dev machines this might not always be the case and cause frustration.
My proposal is to not let the test suite download the chromedriver, but let the developers manage chromedriver and Chrome browser on their own machine. This way, everybody can make sure that their local setup is in sync, and we can also cleanly install the correct versions for testing in GitHub pipelines.
What do you think?