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

Last change on this file since 1000 was 1000, checked in by pharms, 12 years ago
  • created a real test website that can be easily extended for further manual test cases
File size: 845 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<style type="text/css">
9td {
10  vertical-align:top;
11}
12
13td.label {
14  text-align:right;
15}
16
17</style>
18
19</head>
20
21
22<body>
23  <h1>AutoQUEST Testpage</h1>
24  <form>
25    <table>
26      <tr>
27        <th>type</th>
28        <th>example</th>
29      </tr>
30      <tr>
31        <td class="label">input type text</td>
32        <td><input type="text"></input></td>
33      </tr>
34      <tr>
35        <td class="label">text area</td>
36        <td><textarea style="width:600px;height:120px;"></textarea></td>
37      </tr>
38      <tr>
39        <td class="label"></td>
40        <td><input type="button" value="Daten abschicken" onclick="sendRequest();"></input></td>
41      </tr>
42    </table>
43  </form>
44</body>
45</html>
Note: See TracBrowser for help on using the repository browser.