Skip to content

anishst/SeleniumSpringBoot

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Selenium with Spring Boot

example workflow

Spring boot framework with Selenium automation testing tool to perform UI automation and test Microservices based application using different toolings and techniques.

Features

  • Selenium Page Class with Spring Boot
    • leverages dependency injection and Bean webdriver usage
  • TestNG based tests
    • these follow spring boot injection methods and usage of Webdriver as Bean; currenly only Chrome is supported
    • location of main test: src/test/java/com/example/JavaSpringBoot/googletests/GoogleTest.java
    • location of source code: src/main/java/com/example/JavaSpringBoot/page
  • Integration with GitHub Actions
    • tests will run on push to master in GitHub servers
  • Ability to run tests locally and in Selenium Grid

Tests

Running using maven from command line

  • Locally:

    • chromemvn clean test -Dbrowser=chrome
    • edge mvn clean test -Dbrowser=edge
    • mvn clean test will run using default browser in properties file
  • With Selenium grid:

    • launch grid using docker compose (easy) or manually
    • use command to use default browser chrome : mvn clean test -Dspring.profiles.active=remote
    • run with firefox in grid: mvn clean test -Dspring.profiles.active=remote -Dbrowser=firefox
    • run with firefox in grid in qa env: mvn clean test -Dspring.profiles.active=remote,qa -Dbrowser=firefox
  • Parallel tests using testng-suite.xml

    • adjust suite to run parallel/sequential

About

No description or website provided.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages