diff options
author | xue <> | 2006-03-18 01:28:08 +0000 |
---|---|---|
committer | xue <> | 2006-03-18 01:28:08 +0000 |
commit | b8ac07fd91e18decc0a863f3deb115772ea27eac (patch) | |
tree | b6165184ba9acb1b6a47b7a5325f3345575531c3 /tests/FunctionalTests/features/protected/pages/Wizard/Home.page | |
parent | 3323291d70c162e461126366a28a0334f6451c9f (diff) |
Added feature tests for the new controls.
Diffstat (limited to 'tests/FunctionalTests/features/protected/pages/Wizard/Home.page')
-rw-r--r-- | tests/FunctionalTests/features/protected/pages/Wizard/Home.page | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/tests/FunctionalTests/features/protected/pages/Wizard/Home.page b/tests/FunctionalTests/features/protected/pages/Wizard/Home.page new file mode 100644 index 00000000..ad72319d --- /dev/null +++ b/tests/FunctionalTests/features/protected/pages/Wizard/Home.page @@ -0,0 +1,27 @@ +<com:TContent ID="Content">
+
+<com:TWizard
+ HeaderText="Wizard Test"
+ Width="300px"
+ NavigationStyle.BackColor="silver"
+ NavigationButtonStyle.BackColor="green"
+ FinishCompleteButtonStyle.BackColor="red"
+ >
+ <com:TWizardStep Title="Step 1">
+ step 1
+ <com:TTextBox Text="step 1" ID="TextBox1" />
+ <com:TRequiredFieldValidator ControlToValidate="TextBox1" Text="required 1" />
+ </com:TWizardStep>
+ <com:TWizardStep Title="Step 2">
+ step 2
+ <com:TTextBox Text="step 2" ID="TextBox2" />
+ <com:TRequiredFieldValidator ControlToValidate="TextBox2" Text="required 2" />
+ </com:TWizardStep>
+ <com:TWizardStep Title="Step 3">
+ step 3
+ <com:TTextBox Text="step 3" ID="TextBox3" />
+ <com:TRequiredFieldValidator ControlToValidate="TextBox3" Text="required 3" />
+ </com:TWizardStep>
+</com:TWizard>
+
+</com:TContent>
\ No newline at end of file |