Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .idea/encodings.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/git_toolbox_blame.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

33 changes: 33 additions & 0 deletions .idea/inspectionProfiles/Project_Default.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion TestSuite/AndroidTestSuite.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<methods>
<include name="test01" />
<include name="test02" />
<include name="test03" />
<exclude name="test03" />
</methods>
</class>

Expand Down
6 changes: 3 additions & 3 deletions TestSuite/IosTestSuite.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
<classes>
<class name="ios.TestCases.SwagLabsAppAutomation">
<methods>
<exclude name="test01" />
<exclude name="test02" />
<exclude name="test03" />
<include name="test01" />
<include name="test02" />
<include name="test03" />
<include name="test04" />
<include name="test05" />
</methods>
Expand Down
7 changes: 7 additions & 0 deletions TestSuite/masterSuite.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<!-- master-suite.xml -->
<suite name="MasterSuite">
<suite-files>
<suite-file path="AndroidTestSuite.xml"/>
<suite-file path="IosTestSuite.xml"/>
</suite-files>
</suite>
39 changes: 26 additions & 13 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,20 @@
<testng>7.7.1</testng>
<extentreports>4.0.6</extentreports>
<commons-io>2.14.0</commons-io>
<allure.version>2.24.0</allure.version>
<aspectj.version>1.9.20.1</aspectj.version>
</properties>

<dependencies>

<!-- https://mvnrepository.com/artifact/io.qameta.allure/allure-testng -->
<dependency>
<groupId>io.qameta.allure</groupId>
<artifactId>allure-testng</artifactId>
<version>2.29.0</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>com.github.javafaker</groupId>
<artifactId>javafaker</artifactId>
Expand Down Expand Up @@ -82,23 +92,13 @@
<scope>test</scope>
</dependency>

<!-- https://mvnrepository.com/artifact/com.aventstack/extentreports -->
<dependency>
<groupId>com.aventstack</groupId>
<artifactId>extentreports</artifactId>
<version>${extentreports}</version>
</dependency>

<!-- https://mvnrepository.com/artifact/commons-io/commons-io -->
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>${commons-io}</version>
</dependency>




</dependencies>

<build>
Expand Down Expand Up @@ -126,12 +126,25 @@
</executions>
<configuration>
<suiteXmlFiles>
<suiteXmlFile>TestSuite/AndroidTestSuite.xml</suiteXmlFile>
<!-- <suiteXmlFile>TestSuite/IosTestSuite.xml</suiteXmlFile>-->
<!-- <suiteXmlFile>TestSuite/AndroidTestSuite.xml</suiteXmlFile>-->
<suiteXmlFile>TestSuite/IosTestSuite.xml</suiteXmlFile>
</suiteXmlFiles>
<!--suppress UnresolvedMavenProperty -->
<argLine>${argLine}</argLine>
<argLine>
-javaagent:"${settings.localRepository}/org/aspectj/aspectjweaver/${aspectj.version}/aspectjweaver-${aspectj.version}.jar"
</argLine>
</configuration>
<dependencies>
<!-- https://mvnrepository.com/artifact/org.aspectj/aspectjweaver -->
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjweaver</artifactId>
<version>${aspectj.version}</version>
<scope>runtime</scope>
</dependency>

</dependencies>
</plugin>
<plugin>
<artifactId>maven-clean-plugin</artifactId>
Expand All @@ -141,7 +154,7 @@
<fileset>
<directory>${basedir}/reports</directory>
<includes>
<!-- <include>**/*.tmp</include>-->
<include>**/*.tmp</include>
</includes>
<excludes>
<exclude>*.log</exclude>
Expand Down
4 changes: 3 additions & 1 deletion readme.MD
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
SwagLabsDemoAPP Bundle ID: org.reactjs.native.example.SwagLabsMobileApp

WDIO Demo App Bundle ID: org.reactjs.native.example.wdioDemoApp
WDIO Demo App Bundle ID: org.reactjs.native.example.wdioDemoApp

Allure Result Create Command : allure serve target/allure-results
Loading