summaryrefslogtreecommitdiff
path: root/tests/FunctionalTests/tickets/tests/Ticket470TestCase.php
blob: 4a2804ea201c69a634b2e681561e0904ea20a2e2 (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
<?php

class Ticket470TestCase extends PradoGenericSeleniumTest
{
	function test()
	{
		$base = 'ctl0_Content_';
		$this->open('tickets/index.php?page=Ticket470');
		$this->verifyTitle("Verifying Ticket 470");
		$this->assertText("{$base}counter", "0");
		$this->assertText("{$base}Results", "");
		$this->assertNotVisible("{$base}validator1");

		$this->click("{$base}button1");
		$this->pause(800);
		$this->assertText("{$base}counter", "0");
		$this->assertText("{$base}Results", "");
		$this->assertVisible("{$base}validator1");

		$this->type("{$base}TextBox", "hello");
		$this->click("{$base}button1");
		$this->pause(800);
		$this->assertText("{$base}counter", "0");
		$this->assertText("{$base}Results", "OK!!!");
		$this->assertNotVisible("{$base}validator1");

		//reload
		$this->click("{$base}reloadButton");
		$this->pause(800);
		$this->assertValue("{$base}TextBox", "hello");
		$this->assertText("{$base}counter", "1");
		$this->assertText("{$base}Results", "");
		$this->assertNotVisible("{$base}validator1");

		$this->type("{$base}TextBox", "");
		$this->click("{$base}button1");
		$this->pause(800);
		$this->assertText("{$base}counter", "1");
		$this->assertText("{$base}Results", "");
		$this->assertVisible("{$base}validator1");
	
		$this->type("{$base}TextBox", "test");
		$this->click("{$base}button1");
		$this->pause(800);
		$this->assertText("{$base}counter", "1");
		$this->assertText("{$base}Results", "OK!!!");
		$this->assertNotVisible("{$base}validator1");
	}
}