Skip to content

Commit eb1469d

Browse files
AnshulAnshul
authored andcommitted
Selenium Data Driven Framework Part 2
1 parent 4a37996 commit eb1469d

66 files changed

Lines changed: 9631 additions & 529 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.DS_Store

0 Bytes
Binary file not shown.

DataDrivenFramework/.DS_Store

6 KB
Binary file not shown.

DataDrivenFramework/src/.DS_Store

6 KB
Binary file not shown.
6 KB
Binary file not shown.
16.2 KB
Binary file not shown.

DataDrivenFrameworkV2/pom.xml

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,41 @@
1313
<version>4.17.0</version>
1414
</dependency>
1515

16+
<dependency>
17+
<groupId>org.apache.poi</groupId>
18+
<artifactId>poi</artifactId>
19+
<version>5.2.5</version>
20+
</dependency>
21+
22+
<!-- https://mvnrepository.com/artifact/org.apache.poi/poi-ooxml -->
23+
<dependency>
24+
<groupId>org.apache.poi</groupId>
25+
<artifactId>poi-ooxml</artifactId>
26+
<version>5.2.5</version>
27+
</dependency>
28+
29+
<!-- https://mvnrepository.com/artifact/org.apache.poi/poi-ooxml-schemas -->
30+
<dependency>
31+
<groupId>org.apache.poi</groupId>
32+
<artifactId>poi-ooxml-schemas</artifactId>
33+
<version>4.1.2</version>
34+
</dependency>
35+
36+
<!-- https://mvnrepository.com/artifact/org.dom4j/dom4j -->
37+
<dependency>
38+
<groupId>org.dom4j</groupId>
39+
<artifactId>dom4j</artifactId>
40+
<version>2.1.4</version>
41+
</dependency>
42+
43+
<!-- https://mvnrepository.com/artifact/org.apache.xmlbeans/xmlbeans -->
44+
<dependency>
45+
<groupId>org.apache.xmlbeans</groupId>
46+
<artifactId>xmlbeans</artifactId>
47+
<version>5.2.0</version>
48+
</dependency>
49+
50+
1651
<!--
1752
https://mvnrepository.com/artifact/com.googlecode.json-simple/json-simple -->
1853
<dependency>
@@ -65,6 +100,25 @@
65100
</configuration>
66101
</plugin>
67102

103+
<plugin>
104+
<groupId>org.codehaus.mojo</groupId>
105+
<artifactId>exec-maven-plugin</artifactId>
106+
<version>3.2.0</version>
107+
<executions>
108+
<execution>
109+
<id>DataDriven_Execution</id>
110+
<phase>test</phase>
111+
<goals>
112+
<goal>java</goal>
113+
</goals>
114+
</execution>
115+
</executions>
116+
<configuration>
117+
<mainClass>runner.JSONRunner</mainClass>
118+
<classpathScope>test</classpathScope>
119+
</configuration>
120+
</plugin>
121+
68122
</plugins>
69123
</build>
70124
</project>

0 commit comments

Comments
 (0)