-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
127 lines (120 loc) · 3.93 KB
/
index.html
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Breake this page</title>
<link rel="stylesheet" type="text/css" href="./resources/css/main.css">
</head>
<body>
<header class="flex-container">
<img src="resources/images/Intersys.png" alt ="testing logo" title="Intersys">
<h1>Sandbox Testing Page</h1>
</header>
<main>
<h2>FOCUSED TESTING</h2>
<p>A Test Lead asked you to check this page, he wants to: <strong>Identify the testing types</strong> that can be performed for this page.
Also if you can identify some bugs will be a plus</p>
<h3> Requirements:</h3>
<ul>
<li>Home should display the sections detailed on design and it should pixel perfect display
on Chrome browser, viewport 1200px and above.</li>
<li>Layout should be cross browser compatible. Supported browsers are IE11, Chrome,
Firefox and Safari on it’s latest versions. (Pixel perfect only applies to Chrome)</li>
<li>User is able to fill the form and generate the user data well formatted.</li>
<li>If user do not fill all the required fields a pop up is displayed.</li>
</ul>
</main>
<!-- Table Section -->
<table align= "center" >
<tr class="row1">
<td class="row1 col1">
<label>
<span class="role">Name</span>
</label>
</td>
<td class="row1 col2">
<div>
<label>
<textarea rows ="3" cols="60" id='txf1' class="textointerno" maxlength="1200" placeholder="Name"></textarea>
</label>
</div>
</td>
</tr>
<tr class="row2">
<td class="row2 col1">
<label>
<span class="role">Last Name:</span>
</label>
</td>
<td class="row2 col2">
<div>
<label>
<textarea rows ="3" cols="60" wrap="hard" id='txf2' class="textointerno" maxlength="1200" placeholder="Last Name"></textarea>
</label>
</div>
</td>
</tr>
<tr class="row1">
<td class="row1 col1">
<label>
<span class="role">Age:</span>
</label>
</td>
<td class="row1 col2">
<div>
<label>
<textarea rows ="3" cols="60" id='txf3' class="textointerno" maxlength="1200" placeholder="Age"></textarea>
</label>
</div>
</td>
</tr>
<tr class="row2">
<td class="row2 col1">
<label>
<span class="role">Nationality:</span>
</label>
</td>
<td class="row2 col2">
<div>
<label>
<textarea rows ="3" cols="60" id='txf4' class="textointerno" maxlength="1200" placeholder="Nationality"></textarea>
</label>
</div>
</td>
</tr>
<tr class="row1">
<td class="row1 col1">
<label>
<span class="role">Job Title:</span>
</label>
</td>
<td class="row1 col2">
<div>
<label>
<textarea rows ="3" cols="60" id='txf5' class="textointerno" maxlength="1200" placeholder="Job title"></textarea>
</label>
</div>
</td>
</tr>
<tr class="row2">
<td class="row2 col1">
<label>
<span class="role"> Click to generate user data:</span>
</label>
</td>
<td class="row2 col2">
<div>
<label>
<input name="Button" type="button" class="tracking" onclick='notEmpty()' value="Save Data" />
</label>
</div>
</td>
</tr>
</table>
<footer>
<span>SDET Practice Area</span><br/>
<address>Guadalajara, México</address>
</footer>
<script src="resources/js/main.js"></script>
</body>
</html>