Skip to content

Commit 27e70f8

Browse files
authored
Add files via upload
0 parents  commit 27e70f8

20 files changed

+4226
-0
lines changed

API/outputdata/out.html

+382
Large diffs are not rendered by default.

API/outputdata/reports/out.html

+382
Large diffs are not rendered by default.

API/pom.xml

+76
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<modelVersion>4.0.0</modelVersion>
6+
<groupId>org.example</groupId>
7+
<artifactId>BDD_Cucumber</artifactId>
8+
<version>1.0-SNAPSHOT</version>
9+
<properties>
10+
<maven.compiler.source>8</maven.compiler.source>
11+
<maven.compiler.target>8</maven.compiler.target>
12+
</properties>
13+
<!-- https://mvnrepository.com/artifact/org.seleniumhq.selenium/selenium-java -->
14+
<dependencies>
15+
<dependency>
16+
<groupId>org.seleniumhq.selenium</groupId>
17+
<artifactId>selenium-java</artifactId>
18+
<version>3.141.59</version>
19+
</dependency>
20+
21+
<dependency>
22+
<groupId>org.testng</groupId>
23+
<artifactId>testng</artifactId>
24+
<version>7.4.0</version>
25+
<scope>compile</scope>
26+
</dependency>
27+
28+
29+
30+
31+
<!-- https://mvnrepository.com/artifact/io.rest-assured/rest-assured -->
32+
<dependency>
33+
<groupId>io.rest-assured</groupId>
34+
<artifactId>rest-assured</artifactId>
35+
<version>4.4.0</version>
36+
37+
</dependency>
38+
39+
<!-- https://mvnrepository.com/artifact/org.json/json -->
40+
<dependency>
41+
<groupId>org.json</groupId>
42+
<artifactId>json</artifactId>
43+
<version>20180813</version>
44+
</dependency>
45+
<!-- https://mvnrepository.com/artifact/org.json/json -->
46+
<dependency>
47+
<groupId>org.json</groupId>
48+
<artifactId>json</artifactId>
49+
<version>20180813</version>
50+
<scope>test</scope>
51+
</dependency>
52+
53+
<!-- https://mvnrepository.com/artifact/com.aventstack/extentreports -->
54+
55+
<!-- https://mvnrepository.com/artifact/io.rest-assured/json-schema-validator -->
56+
<dependency>
57+
<groupId>io.rest-assured</groupId>
58+
<artifactId>json-schema-validator</artifactId>
59+
<version>4.3.3</version>
60+
</dependency>
61+
62+
<dependency>
63+
<groupId>com.relevantcodes</groupId>
64+
<artifactId>extentreports</artifactId>
65+
<version>2.41.2</version>
66+
</dependency>
67+
68+
<dependency>
69+
<groupId>org.apache.poi</groupId>
70+
<artifactId>poi-ooxml</artifactId>
71+
<version>3.9</version>
72+
</dependency>
73+
74+
75+
</dependencies>
76+
</project>

0 commit comments

Comments
 (0)