-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlocators.html
33 lines (29 loc) · 840 Bytes
/
locators.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
<html>
<head>
<link rel="stylesheet" type="text/css" href="style.css"/>
<script type="text/javascript" src="jquery.js"></script>
</head>
<body>
<div id="container">
<h2>Selenium Locators</h2>
<div id="message">
</div>
<form>
<div>
<input type="text" name="comment"/>
</div>
<a href="#"class="btn btn-default" id="cancel_link" onclick="$('#message').html('clicked cancel link')">Cancel</a>
<input type="submit" id="submit_btn" class="btn btn-deault btn-primary" value="Submit"
onclick="$('#message').html('clicked submit button')"
></input>
</form>
<hr>
<div id="div1">
<input type="checkbox" name="same" value="on"> Same checkbox in Div 1
</div>
<div id="div2">
<input type="checkbox" name="same" value="on"> Same checkbox in Div 2
</div>
</div>
</body>
</html>