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

class Ticket535TestCase extends PradoGenericSelenium2Test
{
	function test()
	{
		$base = 'ctl0_Content_';
		$this->url('tickets/index.php?page=Ticket535');
		$this->assertEquals($this->title(), "Verifying Ticket 535");

		$this->assertText("{$base}label1", "Label 1");

		$this->byId("{$base}radio1")->click();
		$this->byId("{$base}button1")->click();
		$this->pause(800);
		$this->assertText("{$base}label1", 'radio1 checked:{1} radio2 checked:{}');

		$this->byId("{$base}radio2")->click();
		$this->byId("{$base}button1")->click();
		$this->pause(800);
		$this->assertText("{$base}label1", 'radio1 checked:{1} radio2 checked:{1}');

		$this->byId("{$base}bad_radio1")->click();
		$this->byId("{$base}button2")->click();
		$this->pause(800);
		$this->assertText("{$base}label1", 'bad_radio1 checked:{1} bad_radio2 checked:{}');

		$this->byId("{$base}bad_radio2")->click();
		$this->byId("{$base}button2")->click();
		$this->pause(800);
		$this->assertText("{$base}label1", 'bad_radio1 checked:{} bad_radio2 checked:{1}');
	}

}