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

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