Skip to content

Latest commit

 

History

History
44 lines (29 loc) · 842 Bytes

README.md

File metadata and controls

44 lines (29 loc) · 842 Bytes

Automated test project for the SimplePastApp UI layer.

Links SimplePastApp

Google Play

Github

Language and frameworks

  • Java 13
  • Maven
  • Appium
  • Lombok
  • TestNG

Execution

Preconditons:

  • Appium Server be installed.
  • Emulator or physical device with SimplePastApp app installed.

Command line execution

Using the build plugin maven-surefire-plugin and configuring it with the suiteXmlFiles tag:

<configuration>
   <suiteXmlFiles>
      <suiteXmlFile>src/test/suites/${suite}.xml</suiteXmlFile>
   </suiteXmlFiles>
</configuration>

Use -Dsuite=XmlSuiteName to call the suite.

mvn clean test -Dsuite=smoke

Contribute! 🍻