diff options
Diffstat (limited to 'tests/FunctionalTests/protected/pages/Tickets/Ticket_27.php')
-rw-r--r-- | tests/FunctionalTests/protected/pages/Tickets/Ticket_27.php | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/FunctionalTests/protected/pages/Tickets/Ticket_27.php b/tests/FunctionalTests/protected/pages/Tickets/Ticket_27.php index 2c4e1bfb..05483535 100644 --- a/tests/FunctionalTests/protected/pages/Tickets/Ticket_27.php +++ b/tests/FunctionalTests/protected/pages/Tickets/Ticket_27.php @@ -12,6 +12,13 @@ class Ticket_27_TestCase extends SeleniumTestCase function test()
{
$this->open($this->getPage($this));
+ $this->verifyTitle("Verifying Ticket 27", "");
+ $this->click("//input[@value='Agree']", "");
+ $this->assertVisible("ctl0_Content_validator1", "");
+ $this->type("ctl0_Content_TextBox", "122");
+ $this->assertNotVisible("ctl0_Content_validator1", "");
+ $this->clickAndWait("//input[@value='Disagree']", "");
+ $this->assertNotVisible("ctl0_Content_validator1", "");
}
}
|