functionaltesting/uftdeveloper-chrome
UFT Developer with Chrome browser
400
This image contains the UFT Developer image and the Chrome browser. It allows UFT Developer tests to execute the browser inside the container.
For more information on the UFT Developer-Docker integration, see UFT Developer help center
The image contains UFT Developer and a Chrome browser. As browsers are getting updated frequently, you may want to create a new image that will contain an updated version of the browser. In order to achieve that, you can rebuild the image by customizing the following docker file:
FROM uftdeveloper:latest # Install Google Chrome USER root RUN apt-get update \ && apt-get -y --no-install-recommends install apt-transport-https software-properties-common RUN wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | tee /etc/apt/trusted.gpg.d/google-chrome.asc \ && echo "deb http://dl.google.com/linux/chrome/deb/ stable main" | tee /etc/apt/sources.list.d/google-chrome.list \ && apt-get update -qqy \ && apt-get -qqy install google-chrome-stable RUN rm -rf /var/lib/apt/lists/* \ && chmod 777 /var/log ENV LFT_SUPPORTED_BROWSER "chrome" USER $user
docker pull functionaltesting/uftdeveloper-chrome