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

Last change on this file since 1090 was 1090, checked in by pharms, 11 years ago
  • changed to be also able to test other installations of the monitor
File size: 1.1 KB
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<!-- script type="text/javascript"
8        src="https://trex.informatik.uni-goettingen.de/autoquest-htmlmonitor/script/autoquest-htmlmonitor.js"></script-->
9       
10        <script type="text/javascript" src="http://code.jquery.com/jquery-1.8.3.min.js"></script>
11
12<style type="text/css">
13td {
14  vertical-align:top;
15}
16
17td.label {
18  text-align:right;
19}
20
21</style>
22<meta http-equiv="Content-type" content="text/html;charset=UTF-8">
23</head>
24
25
26<body>
27  <h1>AutoQUEST Testpage</h1>
28  <form>
29    <table>
30      <tr>
31        <th>type</th>
32        <th>example</th>
33      </tr>
34      <tr>
35        <td class="label">input type text</td>
36        <td><input type="text" /></td>
37      </tr>
38      <tr>
39        <td class="label">text area</td>
40        <td><textarea style="width:600px;height:120px;"></textarea></td>
41      </tr>
42      <tr>
43        <td class="label"></td>
44        <td><input type="button" value="Daten abschicken" onclick="sendRequest();" /></td>
45      </tr>
46    </table>
47  </form>
48</body>
49</html>
Note: See TracBrowser for help on using the repository browser.