diff options
author | xue <> | 2006-02-13 22:12:50 +0000 |
---|---|---|
committer | xue <> | 2006-02-13 22:12:50 +0000 |
commit | 3e60cbad4b79301ae086ecacbdc63af333532a43 (patch) | |
tree | aaa72887f9e5eaf94305c8a08a07f7a735c378ac /tests/FunctionalTests/quickstart/Controls/Repeater1TestCase.php | |
parent | 98e796c1a4f0bda1abc4df7e08df9ddb4f6e50af (diff) |
Added repeater functional tests.
Diffstat (limited to 'tests/FunctionalTests/quickstart/Controls/Repeater1TestCase.php')
-rw-r--r-- | tests/FunctionalTests/quickstart/Controls/Repeater1TestCase.php | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/tests/FunctionalTests/quickstart/Controls/Repeater1TestCase.php b/tests/FunctionalTests/quickstart/Controls/Repeater1TestCase.php new file mode 100644 index 00000000..e0b5a49c --- /dev/null +++ b/tests/FunctionalTests/quickstart/Controls/Repeater1TestCase.php @@ -0,0 +1,29 @@ +<?php
+
+class Repeater1TestCase extends SeleniumTestCase
+{
+ function test()
+ {
+ $this->open("../../demos/quickstart/index.php?page=Controls.Samples.TRepeater.Sample1&notheme=true", "");
+
+ // verify if all required texts are present
+ $this->verifyTextPresent('ID','');
+ $this->verifyTextPresent('Name','');
+ $this->verifyTextPresent('Quantity','');
+ $this->verifyTextPresent('Price','');
+ $this->verifyTextPresent('Imported','');
+ $this->verifyTextPresent('ITN001','');
+ $this->verifyTextPresent('Motherboard','');
+ $this->verifyTextPresent('Yes','');
+ $this->verifyTextPresent('ITN019','');
+ $this->verifyTextPresent('Speaker','');
+ $this->verifyTextPresent('No','');
+ $this->verifyTextPresent('Computer Parts Inventory','');
+
+ // verify specific table tags
+ $this->verifyElementPresent("//td[@colspan='5']");
+ $this->verifyElementPresent("//table[@cellpadding='2']");
+ }
+}
+
+?>
\ No newline at end of file |