diff options
author | wei <> | 2006-01-22 00:32:09 +0000 |
---|---|---|
committer | wei <> | 2006-01-22 00:32:09 +0000 |
commit | 08297a6b9c0a1ddbe3756fd42e2bf0eaa2f6e83e (patch) | |
tree | ae391f5b4fb2d008bbeda95b93a973217e557ea1 /tests/FunctionalTests/protected/pages/Validation | |
parent | 060694288566960c0519ef067a633100d6bf47db (diff) |
Try again.
Diffstat (limited to 'tests/FunctionalTests/protected/pages/Validation')
-rw-r--r-- | tests/FunctionalTests/protected/pages/Validation/CheckBox.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/FunctionalTests/protected/pages/Validation/CheckBox.php b/tests/FunctionalTests/protected/pages/Validation/CheckBox.php index 5f5d5a41..df6ff310 100644 --- a/tests/FunctionalTests/protected/pages/Validation/CheckBox.php +++ b/tests/FunctionalTests/protected/pages/Validation/CheckBox.php @@ -21,10 +21,10 @@ class CheckBoxTestCase extends SeleniumTestCase $this->verifyTitle("An AutoPostBack CheckBox");
//test checkbox 2 should fire the validator
- $this->assertNotVisible("validator1");
- $this->click("checkbox2");
+ $this->assertNotVisible("ctl0_Content_validator1");
+ $this->click("ctl0_Content_checkbox2");
$this->pasue(100);
- $this->assertVisible("validator1");
+ $this->assertVisible("ctl0_Content_validator1");
}
}
|