From 9f2905f5e2a6d0ab33e4e2d82162183cfd63a042 Mon Sep 17 00:00:00 2001 From: wei <> Date: Wed, 13 Sep 2006 23:33:41 +0000 Subject: Fixed #376 --- .../ActiveCustomValidatorTestCase.php | 33 ++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 tests/FunctionalTests/quickstart/ActiveControls/ActiveCustomValidatorTestCase.php (limited to 'tests') diff --git a/tests/FunctionalTests/quickstart/ActiveControls/ActiveCustomValidatorTestCase.php b/tests/FunctionalTests/quickstart/ActiveControls/ActiveCustomValidatorTestCase.php new file mode 100644 index 00000000..a78f5e2f --- /dev/null +++ b/tests/FunctionalTests/quickstart/ActiveControls/ActiveCustomValidatorTestCase.php @@ -0,0 +1,33 @@ +open("../../demos/quickstart/index.php?page=ActiveControls.Samples.TActiveCustomValidator.Home&notheme=true"); + + $this->verifyTitle("PRADO QuickStart Sample", ""); + + $this->assertTextPresent('TActiveCustomValidator Samples (AJAX)'); + + $base = 'ctl0_body_'; + + $this->assertNotVisible($base.'validator1'); + $this->click($base.'button1'); + $this->pause(800); + $this->assertVisible($base.'validator1'); + + $this->type($base.'textbox1', 'hello'); + $this->pause(800); + $this->assertVisible($base.'validator1'); + + $this->type($base.'textbox1', 'Prado'); + $this->pause(800); + $this->assertNotVisible($base.'validator1'); + + $this->clickAndWait($base.'button1'); + $this->assertNotVisible($base.'validator1'); + } +} + +?> \ No newline at end of file -- cgit v1.2.3