functionaltesting/leanft-firefox
UFT Developer (LeanFT) with Firefox browser
936
This image contains the UFT Developer image and the Firefox browser. It allows UFT Developer tests to execute the browser inside the container.
For more information on the UFT Developer-Docker integration, see the UFT Developer help center
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
If you require Docker images with previous LeanFT/UFT Developer versions, contact Micro Focus Support.
docker pull functionaltesting/leanft-firefox