functionaltesting/uftdeveloper-chrome

By functionaltesting

Updated 4 months ago

UFT Developer with Chrome browser

Image

400

Supported tags

  • 24.4.463, 24.4, latest
  • 2022.0.333 ,2022.0
  • 2021.1.399 ,2021.1

What is this image

This image contains the UFT Developer image and the Chrome browser. It allows UFT Developer tests to execute the browser inside the container.

How to use this image?

For more information on the UFT Developer-Docker integration, see UFT Developer help center

How can I build my own image?

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 Command

docker pull functionaltesting/uftdeveloper-chrome