Skip to content

Latest commit

 

History

History
44 lines (35 loc) · 2.07 KB

README.md

File metadata and controls

44 lines (35 loc) · 2.07 KB

Test automation framework demo project

The goal of this initiative is to provide exemplary project that covers typical cases faced when setting up framework for test automation.

Technology stack

Test automation cases

Test specification

Test reporting

Test execution

  • Run selected test scenarios
  • Run all tests - execute 'mvn clean verify' command
  • Run tests with different environment configuration - execute 'mvn clean verify -Dspring.profiles.active=dev' command
  • Run tests in headless mode - set com.codeborne.selenide.Configuration.headless = true
  • Run tests in parallel - set maven-surefire-plugin configuration parameter to value higher that 1
  • Run tests in CI - TODO
  • Use custom WebDriver
  • Use hooks - TODO

Test data