functionaltesting/uftdeveloper-edge
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 Edge 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 Edge USER root RUN apt-get update \ && apt-get -y --no-install-recommends install curl apt-transport-https gnupg software-properties-common \ && curl https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > microsoft.gpg \ && install -o root -g root -m 644 microsoft.gpg /etc/apt/trusted.gpg.d/ \ && rm -f microsoft.gpg RUN echo "deb [arch=amd64] https://packages.microsoft.com/repos/edge stable main" | tee /etc/apt/sources.list.d/microsoft-edge.list \ && apt-get update \ && apt-get install -y --no-install-recommends microsoft-edge-stable \ && rm -rf /var/lib/apt/lists/* \ && chmod 777 /var/log ENV LFT_SUPPORTED_BROWSER "edge" USER $user
docker pull functionaltesting/uftdeveloper-edge