summaryrefslogtreecommitdiff
path: root/tests/FunctionalTests/quickstart/Controls/Repeater1TestCase.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/FunctionalTests/quickstart/Controls/Repeater1TestCase.php')
-rw-r--r--tests/FunctionalTests/quickstart/Controls/Repeater1TestCase.php29
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&amp;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