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

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