summaryrefslogtreecommitdiff
path: root/tests/FunctionalTests/quickstart_tests/Controls/LabelTestCase.php
diff options
context:
space:
mode:
authorxue <>2006-01-24 14:36:13 +0000
committerxue <>2006-01-24 14:36:13 +0000
commitc87a1568925872634614d1cc12a79a2e9cc5a848 (patch)
treefe10a97ff9ffefe050236038e3ffbc8c538a5742 /tests/FunctionalTests/quickstart_tests/Controls/LabelTestCase.php
parentfa5d24ff01e1d4fad243625463d4c164c02eefd7 (diff)
Makes all FT IE-compatible.
Diffstat (limited to 'tests/FunctionalTests/quickstart_tests/Controls/LabelTestCase.php')
-rw-r--r--tests/FunctionalTests/quickstart_tests/Controls/LabelTestCase.php7
1 files changed, 5 insertions, 2 deletions
diff --git a/tests/FunctionalTests/quickstart_tests/Controls/LabelTestCase.php b/tests/FunctionalTests/quickstart_tests/Controls/LabelTestCase.php
index 8694f581..33ec790c 100644
--- a/tests/FunctionalTests/quickstart_tests/Controls/LabelTestCase.php
+++ b/tests/FunctionalTests/quickstart_tests/Controls/LabelTestCase.php
@@ -11,8 +11,11 @@ class LabelTestCase extends SeleniumTestCase
$this->verifyTextPresent("This is a form label associated with the TTextBox control below", "");
$this->verifyTextPresent("This is a label with empty Text property and nonempty body", "");
$this->verifyTextPresent("This is a disabled label", "");
- $this->verifyElementPresent("//span[@disabled='disabled']");
- $this->verifyElementPresent("//label[@for=\"ctl0_body_test\"]");
+
+ $this->verifyAttribute("ctl0_body_Label2@disabled","regexp:true|disabled");
+
+ //$this->verifyAttribute("ctl0_body_Label1@for","ctl0_body_test");
+
$this->type("ctl0\$body\$test", "test");
}
}