source: trunk/autoquest-htmlmonitor-test/src/test/resources/test.html @ 1069

Last change on this file since 1069 was 1069, checked in by pharms, 11 years ago
  • support of new HTML logging format
File size: 992 bytes
Line 
1<!DOCTYPE html>
2<html>
3<head>
4<title>AutoQUEST-Testpage</title>
5<script type="text/javascript"
6        src="http://localhost:8090/script/autoquest-htmlmonitor.js"></script>
7       
8        <script type="text/javascript" src="http://code.jquery.com/jquery-1.8.3.min.js"></script>
9
10<style type="text/css">
11td {
12  vertical-align:top;
13}
14
15td.label {
16  text-align:right;
17}
18
19</style>
20<meta http-equiv="Content-type" content="text/html;charset=UTF-8">
21</head>
22
23
24<body>
25  <h1>AutoQUEST Testpage</h1>
26  <form>
27    <table>
28      <tr>
29        <th>type</th>
30        <th>example</th>
31      </tr>
32      <tr>
33        <td class="label">input type text</td>
34        <td><input type="text" /></td>
35      </tr>
36      <tr>
37        <td class="label">text area</td>
38        <td><textarea style="width:600px;height:120px;"></textarea></td>
39      </tr>
40      <tr>
41        <td class="label"></td>
42        <td><input type="button" value="Daten abschicken" onclick="sendRequest();" /></td>
43      </tr>
44    </table>
45  </form>
46</body>
47</html>
Note: See TracBrowser for help on using the repository browser.