functionaltesting/leanft-chrome

By functionaltesting

Updated over 3 years ago

UFT Developer (LeanFT) with Chrome browser

Image

10K+

Supported tags

  • 2021.0.353 ,2021.0 , latest
  • 15.2.686.3 , 15.2 , latest
  • 15.1.416 , 15.1
  • 15.0.520 , 15.0

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 functionaltesting/leanft:latest

## Install Google Chrome
USER root

RUN wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add -

RUN echo "deb http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google-chrome.list
RUN apt-get update -qqy  \
   && apt-get -qqy install google-chrome-stable \
   && rm -rf /var/lib/apt/lists/*

USER $user

Older versions

If you require Docker images with previous LeanFT/UFT Developer versions, contact Micro Focus Support.

Docker Pull Command

docker pull functionaltesting/leanft-chrome