summaryrefslogtreecommitdiff
path: root/tests/FunctionalTests/tickets/tests/Ticket274TestCase.php
blob: ae976a7f7f8ab5b8f7028188bb205a2c2e2b034e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?php

class Ticket274TestCase extends SeleniumTestCase
{
	function test()
	{
		$base = 'ctl0_Content_';
		$this->open('tickets/index.php?page=Ticket274');
		$this->assertTitle('Verifying Ticket 274');
		$this->assertNotVisible($base.'validator1');
		$this->assertNotVisible($base.'validator2');
		
		$this->click($base.'button1');		
		$this->assertVisible($base.'validator1');
		$this->assertNotVisible($base.'validator2');
		
		$this->type($base.'MyDate', 'asd');
		$this->click($base.'button1');
		$this->assertVisible($base.'validator1');
		$this->assertNotVisible($base.'validator2');		
	}
}

?>