-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
77 lines (67 loc) · 2.39 KB
/
index.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
<html>
<head>
<link media="all" rel="stylesheet" type="text/css" href="main.css"/>
<script type="text/javascript" src="fleegix.js"></script>
<script type="text/javascript" src="windmill_tutorial.js"></script>
<script type="text/javascript">
fleegix.event.listen(window, 'onload', init);
</script>
<title>Windmill Introduction Tutorial</title>
</head>
<body>
<table>
<tr>
<td><img style="height:100px;width:95px;" src="images/wlogo.png">
<td>
<span style="font-size:28px;color:#fff;">
Windmill Tutorial
</span>
<br>
<span id="sub" style="font-size:13px;color:#25444e;">
Walking you through the testing goodness.
</span>
</td>
</tr>
</table>
<br>
<div id="messages">
</div>
<div id="container">
<table cellpadding="8" style="width:550px;font-size: 13px;">
<tr>
<td>
<div id="intro">
<h3>Welcome to the Windmill Interactive Tutorial.</h3>
The following should make you familiar enough with Windmill and its features that afterwards you should be able to start writing and running tests against your product. At anytime you are free to browse through the <a href="https://github.com/windmill/windmill/wiki">Windmill Docs</a> for more thorough explanations of Windmill features and more advanced functionality. <br><br>As you walk through the steps, you may see feedback and if this doesn't do the trick please come visit us in #windmill on irc.freenode.org with questions!
</div>
</td>
</tr>
<tr>
<td>
<div id="step1">
<b>Step 1:</b> Click the record button in the IDE, then:
<div id="recordedClickId" class="floatRight">
<br>Click Me!
</div>
</div>
</td>
</tr>
<tr>
<td>
<div id="step2">
<b>Step 2:</b> With the recorder still turned on, enter some text in the following text field and submit it.<br>
<div class="floatRight"><input id="textFieldOne" type="TEXT" size=35><input id="btnSub" type="BUTTON" value="Submit"></div>
</div>
</td>
</tr>
</div>
<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
var pageTracker = _gat._getTracker("UA-3515839-3");
pageTracker._trackPageview();
</script>
</body> </html>