Skip to content

Latest commit

 

History

History
39 lines (26 loc) · 1.15 KB

File metadata and controls

39 lines (26 loc) · 1.15 KB

Selenium Java Architecture Skeleton

A lean automation architecture built for e2e testing of web applications, developed with Java and Selenium 4.

Prerequisites

Make sure you have installed and configured the environment variables and all the following prerequisites on your development machine:

OS JDK Maven Docker
Windows scoop install java/openjdk scoop install maven winget install -e --id Docker.DockerDesktop
macOS brew install openjdk brew install maven brew install docker

Executing The Tests

  • Clone the repository.
git clone git@github.com:burakkaygusuz/selenium-java-architecture-skeleton.git
  • Change the directory.
cd selenium-java-architecture-skeleton
  • Execute the .yml file to start the Selenium Grid.
DOCKER_DEFAULT_PLATFORM=linux/amd64 docker-compose -f docker-compose.yml up
  • Run the test.
mvn clean test