summaryrefslogtreecommitdiff
path: root/tests/FunctionalTests/active-controls/tests/CallbackOptionsTestCase.php
blob: 4c2c7070bc18410ec78ae3d372c199b6c5f4c103 (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
<?php

class CallbackOptionsTestCase extends PradoGenericSelenium2Test
{
	function test()
	{
		$base='ctl0_Content_';
		$this->url("active-controls/index.php?page=CallbackOptionsTest");
		$this->assertContains("TCallbackOptions Test", $this->source());

		$this->assertText("label1", "Label 1");
		$this->assertText("label2", "Label 2");
		$this->assertText("label3", "Label 3");

		$this->byId("{$base}button1")->click();
		$this->pause(800);
		$this->assertText("label1", "Button 1 has returned");
		$this->assertText("label2", "Label 2");
		$this->assertText("label3", "Label 3");

		$this->byId("{$base}button2")->click();
		$this->pause(800);
		$this->assertText("label1", "Button 1 has returned");
		$this->assertText("label2", "Button 2 has returned");
		$this->assertText("label3", "Label 3");

		$this->byId("{$base}button3")->click();
		$this->pause(800);
		$this->assertText("label1", "Button 1 has returned");
		$this->assertText("label2", "Button 2 has returned");
		$this->assertText("label3", "Button 3 has returned");
	}
}