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

class Ticket274TestCase extends PradoGenericSelenium2Test
{
	function test()
	{
		$base = 'ctl0_Content_';
		$this->url('tickets/index.php?page=Ticket274');
		$this->assertEquals($this->title(), 'Verifying Ticket 274');
		$this->assertNotVisible($base.'validator1');
		$this->assertNotVisible($base.'validator2');

		$this->clickAndWait($base.'button1');
		$this->assertVisible($base.'validator1');
		$this->assertNotVisible($base.'validator2');

		$this->type($base.'MyDate', 'asd');
		$this->clickAndWait($base.'button1');
		$this->assertNotVisible($base.'validator1');
		$this->assertVisible($base.'validator2');
	}
}