-
Notifications
You must be signed in to change notification settings - Fork 2
/
Info.html
59 lines (49 loc) · 1.96 KB
/
Info.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>WebDriver Tester</title>
<!-- Bootstrap core CSS -->
<link href="dist/css/bootstrap.min.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="css/WebDriverTester.css" rel="stylesheet">
<!-- Bootstrap core JavaScript -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<script src="dist/js/bootstrap.min.js"></script>
</head>
<body>
<!-- Header -->
<nav class="navbar navbar-inverse navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
</button>
<a class="navbar-brand" href="index.html">WebDriver Tester</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="index.html">Send Requests</a></li>
<li class="active"><a href="Info.html">Info</a></li>
</ul>
</div><!--/.nav-collapse -->
</div>
</nav>
<!-- Information -->
<div class="container">
<div class="explanation">
<h1>Information</h1>
<p class="lead">WebDriver is a W3C standard that aims to provide a common automation interface for browsers.</p>
</div>
</div><!-- /.container -->
<div class="container">
<div class="request-info">
<h2>FAQ</h2>
<h4>A command is missing on the Send Requests page</h4>
<p>Commands can be added by updating the commands array in common.js</p>
</div>
</div><!-- /.container -->
</body>
</html>