functionaltesting/leanft-firefox

By functionaltesting

Updated over 3 years ago

UFT Developer (LeanFT) with Firefox browser

Image

936

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 Firefox 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 the UFT Developer help center

How can I build my own image?

The image contains UFT Developer and a Firefox 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 FireFox
USER root
ARG FIREFOX_VERSION=53.0
RUN apt-get update -qqy \
 && apt-get install -qqy libgtk-3-0 libdbus-glib-1-2 libdbusmenu-glib4 \
 libdbusmenu-gtk4 libstartup-notification0  xul-ext-ubufox libgconf-2-4 libxss1    
RUN  wget -q -O /tmp/firefox.tar.bz2 https://download-installer.cdn.mozilla.net/pub/firefox/releases/$FIREFOX_VERSION/linux-x86_64/en-US/firefox-$FIREFOX_VERSION.tar.bz2 \ 
   && tar -C /opt -xjf /tmp/firefox.tar.bz2 \
   && rm /tmp/firefox.tar.bz2 \
   && mv /opt/firefox /opt/firefox-$FIREFOX_VERSION \
   && ln -fs /opt/firefox-$FIREFOX_VERSION/firefox /usr/bin/firefox    
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-firefox