summaryrefslogtreecommitdiff
path: root/tests/FunctionalTests/tickets/tests/Ticket278TestCase.php
blob: 4bfffede10eaa664aa45c5e675945fdcab62e0c2 (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<?php

class Ticket278TestCase extends PradoGenericSeleniumTest
{
	function test()
	{
		$base = 'ctl0_Content_';
		$this->open('tickets/index.php?page=Ticket278');
		$this->assertTitle('Verifying Ticket 278');
		$this->assertNotVisible($base.'validator1');
		$this->assertNotVisible($base.'validator2');
		$this->assertNotVisible($base.'panel1');

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

		$this->type($base.'text1', 'asd');
		$this->clickAndWait($base.'button1');
		$this->assertNotVisible($base.'validator1');
		$this->assertNotVisible($base.'validator2');
		$this->assertNotVisible($base.'panel1');

		$this->click($base.'check1');
		$this->click($base.'button1');
		$this->assertNotVisible($base.'validator1');
		$this->assertVisible($base.'validator2');
		$this->assertVisible($base.'panel1');


		$this->type($base.'text1', '');
		$this->type($base.'text2', 'asd');
		$this->click($base.'button1');
		$this->assertVisible($base.'validator1');
		$this->assertNotVisible($base.'validator2');
		$this->assertVisible($base.'panel1');


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

		$this->type($base.'text1', '');
		$this->type($base.'text2', '');
		$this->click($base.'button1');
		$this->assertVisible($base.'validator1');
		$this->assertVisible($base.'validator2');
		$this->assertVisible($base.'panel1');
	}
}