forked from Metadrop/nightwatch-api-steps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
39 lines (39 loc) · 950 Bytes
/
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
<html>
<head>
<title>Page title</title>
</head>
<body>
<h1>Nightwatch tests</h1>
<div>
<label>Textfield</label>
<input type="textfield">
</div>
<div>
<label>File</label>
<input type="file">
</div>
<div>
<label>Select</label>
<select>
<option value="option1">Option 1</option>
<option value="option2">Option 2</option>
</select>
</div>
<div>
<label>Checkbox not checked</label>
<input type="checkbox" name="checkbox_not_checked">
<label>Checkbox checked</label>
<input type="checkbox" name="checkbox_checked" checked="checked">
</div>
<div>
<button>
Button.
</button>
<input type="submit" value="Button as input">
</div>
<div>
<label>Radio button</label>
<input type="radio" name="radio_button">
</div>
</body>
</html>