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

class Ticket169TestCase extends SeleniumTestCase
{
	function test()
	{
		$this->open('tickets/index.php?page=Ticket169');
		$this->assertNotVisible('ctl0_Content_validator1');
		$this->click('ctl0_Content_ctl0');
		$this->assertVisible('ctl0_Content_validator1');
	}
}

?>