AI Features

Create the Pipeline and Run the Tests

Learn how to create the pipeline and execute the Selenium tests using Docker containers.

The pipeline that runs the Selenium tests in a Docker container relies on the Dockerfile from the root project folder:

FROM selenium/node-chrome
COPY . .
USER root
RUN apt-get update
RUN apt-get install maven -y
RUN apt-get install openjdk-8-jdk -y
ENTRYPOINT ["bash", "command.sh"]

Add the above Dockerfile to the ...

Ask