


– You have control over the exact ChromeDriver 87 version used and added in docker image. Push the docker image in the docker repository so each time you execute UI5 tests, the last version of the image will be used.20 and replace ChromeDriver on docker image /usr/bin/chromedriver. RUN curl -s | apt-key add - & echo 'deb stable main' | tee /etc/apt//google-chrome.list & apt-get update & apt-get install -y google-chrome-stable In Dokerfile for your image perform this command:.On your docker image, you have Chrome 86 and you want to update it to 87.For example, Chrome 87 just became stable which means:

Check the Chrome Platform status for the last stable Chrome version.Different options to update ChromeDriver in docker image Manually update Chrome browser and ChromeDriver In this blogpost, I will tell you about these two ways to update ChromeDriver in docker image and what are the pros and cons of each of them. After the update, ChromeDriver can publish the image in a docker repository where it will be consumed from. There is an automatic way to update your docker image with the latest stable version of Chrome browser, with just a button click and there are manual steps. You can execute UI5 Test on Chrome (headless) in docker image (Ubuntu 18.04), so you always need to be up to date with the latest stable Chrome browser and ChromeDriver. To know which version to select you need to first know what version of Chrome you are using it with. As you probably know, it’s a big challenge to maintain multiple versions of ChromeDriver.
