-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathreport.html
More file actions
68 lines (64 loc) · 1.36 KB
/
report.html
File metadata and controls
68 lines (64 loc) · 1.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<html>
<head>
<style> table {
font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
width: 100%;
border-collapse: collapse;
}
td, th {
font-size: 1em;
border: 1px solid #98bf21;
padding: 3px 7px 2px 7px;
}
th {
font-size: 1.1em;
text-align: left;
padding-top: 5px;
padding-bottom: 4px;
background-color: #A7C942;
color: #ffffff;
}
td {
color: #000000;
background-color: #EAF2D3;
}
a:hover {
color: #FF00FF;
}
body
{
counter-reset: Serial; /* Set the Serial counter to 0 */
}
tr td:first-child:before
{
counter-increment: Serial; /* Increment the Serial counter */
content: counter(Serial); /* Display the counter */
}
</style>
<title> test report </title>
</head>
<body>
<h2>NewTestCase3</h2>
<br>
<table id="ReportTable">
<tbody>
<tr>
<th> Sr.no </th>
<th> Test Step </th>
<th> Expected Result </th>
<th> Actual Result </th>
<th> Status</th>
<th> Screenshot</th>
</tr>
<tr>
<td></td>
<td>example test step2</td>
<td>this result is expected</td>
<td>this is the actual result</td>
<td id="status">fail</td>
<td> <a href="/home/sanket/Downloads/10382418_10202433694616873_5647560010644397222_o.jpg"> Screenshot link </a> </td>
</tr>
</tbody>
</table>
</body>
</html>