summaryrefslogtreecommitdiff
path: root/tests/FunctionalTests/tickets/tests/Ticket21TestCase.php
blob: d96777796ceeef0027c07142d2d3e18e378d9b2d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php

class Ticket21TestCase extends SeleniumTestCase
{
	function test()
	{
		$this->open('tickets/index.php?page=Ticket21');
		$this->assertTitle("Verifying Ticket 21");
		$this->clickAndWait("ctl0_Content_button1");
		$this->verifyTextPresent("Radio button clicks: 1", "");
		$this->click("ctl0_Content_button1");
		$this->verifyTextPresent("Radio button clicks: 1", "");
	}
}

?>