Sign inSign up

functionaltesting/uftdeveloper-edge

By functionaltesting

Updated 11 days ago

Image
0

2.5K

functionaltesting/uftdeveloper-edge repository overview

Supported tags

  • 2026.3.141, 2026.3, latest
  • 2026.1.146, 2026.1
  • 2025.2.461, 25.2
  • 24.4.463, 24.4
  • 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

Tag summary

Content type

Image

Digest

sha256:1ade613ac

Size

1.5 GB

Last updated

11 days ago

docker pull functionaltesting/uftdeveloper-edge