functionaltesting/uftdeveloper-edge

By functionaltesting

Updated 4 months ago

Image

100

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 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 Command

docker pull functionaltesting/uftdeveloper-edge