Skip to content

Commit 836a240

Browse files
committed
JSONUtils, Common Utilities in BasePage
2 parents d40421b + 4272179 commit 836a240

40 files changed

+452536
-123244
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
11
.settings
22
.classpath
33
.project
4+
logs
5+
ServerLogs
6+
Videos
47
target
58
test-output
9+
ExtentReports
610
ExtentReports.zip
711
z_others

ExtentReports/AutomationReport.html

Lines changed: 234086 additions & 83979 deletions
Large diffs are not rendered by default.

ExtentReports/Windows_10_Mon_Oct_25_22_29_48_IST_2021_AutomationReport.html

Lines changed: 0 additions & 35629 deletions
This file was deleted.

ExtentReports/Windows_10_Sun_Oct_31_22_03_41_IST_2021_AutomationReport.html

Lines changed: 213716 additions & 0 deletions
Large diffs are not rendered by default.

ServerLogs/application.log

Lines changed: 4 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,4 @@
1-
[ServerLogs DEBUG] 2021-10-25 23:23:37.696 BaseTest:184 - Appium Server started.................
2-
[ServerLogs DEBUG] 2021-10-25 23:26:07.006 BaseTest:191 - Appium Server started.................
3-
[ServerLogs DEBUG] 2021-10-25 23:29:57.709 BaseTest:198 - Appium Server started.................
4-
[ServerLogs DEBUG] 2021-10-25 23:30:31.406 BaseTest:207 - Appium Server stopped.............
5-
[ServerLogs DEBUG] 2021-10-25 23:33:21.528 BaseTest:198 - Appium Server started.................
6-
[ServerLogs DEBUG] 2021-10-25 23:34:03.225 BaseTest:207 - Appium Server stopped.............
7-
[ServerLogs DEBUG] 2021-10-25 23:36:37.914 BaseTest:198 - Appium Server started.................
8-
[ServerLogs DEBUG] 2021-10-25 23:37:18.626 BaseTest:207 - Appium Server stopped.............
9-
[ServerLogs DEBUG] 2021-10-25 23:38:22.615 BaseTest:198 - Appium Server started.................
10-
[ServerLogs DEBUG] 2021-10-25 23:39:08.097 BaseTest:207 - Appium Server stopped.............
11-
[ServerLogs DEBUG] 2021-10-25 23:41:22.468 BaseTest:198 - Appium Server started.................
12-
[ServerLogs DEBUG] 2021-10-25 23:42:23.931 BaseTest:207 - Appium Server stopped.............
13-
[ServerLogs DEBUG] 2021-10-26 00:19:23.554 BaseTest:194 - Appium Server started.................
14-
[ServerLogs DEBUG] 2021-10-26 00:20:54.051 BaseTest:203 - Appium Server stopped.............
15-
[ServerLogs DEBUG] 2021-10-26 00:28:51.055 BaseTest:194 - Appium Server started.................
16-
[ServerLogs DEBUG] 2021-10-26 00:29:37.812 BaseTest:203 - Appium Server stopped.............
1+
[ServerLogs DEBUG] 2021-12-04 18:05:55.235 BaseTest:138 - Appium Server started.................
2+
[ServerLogs DEBUG] 2021-12-04 18:10:17.020 BaseTest:138 - Appium Server started.................
3+
[ServerLogs DEBUG] 2021-12-04 18:16:31.269 BaseTest:138 - Appium Server started.................
4+
[ServerLogs DEBUG] 2021-12-04 18:23:00.221 BaseTest:138 - Appium Server started.................

ServerLogs/server.log

Lines changed: 3417 additions & 2645 deletions
Large diffs are not rendered by default.

logs/Android_Pixel_3/application.log

Lines changed: 356 additions & 412 deletions
Large diffs are not rendered by default.

logs/Android_Pixel_4/application.log

Lines changed: 412 additions & 298 deletions
Large diffs are not rendered by default.

pom.xml

Lines changed: 36 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,43 @@
44
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
55
<modelVersion>4.0.0</modelVersion>
66
<groupId>com.learning</groupId>
7-
<artifactId>MasterAppiumFramework</artifactId>
7+
<artifactId>MasterAppiumFramework_TDD</artifactId>
88
<version>0.0.1-SNAPSHOT</version>
9+
10+
<properties>
11+
<!-- DEFAULT - If you do not pass any value with mvn test, then, this value
12+
will be used -->
13+
<suiteFile>testng.xml</suiteFile>
14+
</properties>
15+
16+
<build>
17+
<plugins>
18+
<plugin>
19+
<groupId>org.apache.maven.plugins</groupId>
20+
<artifactId>maven-compiler-plugin</artifactId>
21+
<version>3.8.1</version>
22+
<configuration>
23+
<source>8</source>
24+
<target>8</target>
25+
</configuration>
26+
</plugin>
27+
<plugin>
28+
<groupId>org.apache.maven.plugins</groupId>
29+
<artifactId>maven-surefire-plugin</artifactId>
30+
<version>3.0.0-M5</version>
31+
<configuration>
32+
<!-- Suite testng xml file to consider for test execution -->
33+
<suiteXmlFiles>
34+
<!-- <suiteXmlFile>src/test/resources/testng.xml</suiteXmlFile> -->
35+
<!-- <suiteXmlFile>testng.xml</suiteXmlFile> -->
36+
<suiteXmlFile>${suiteFile}</suiteXmlFile>
37+
</suiteXmlFiles>
38+
</configuration>
39+
</plugin>
40+
41+
</plugins>
42+
</build>
43+
944
<dependencies>
1045

1146
<!-- https://mvnrepository.com/artifact/io.appium/java-client -->

0 commit comments

Comments
 (0)