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

class CustomTemplateTestCase extends PradoGenericSelenium2Test
{
	function test()
	{
		$base='ctl0_Content_';
		$this->url('active-controls/index.php?page=CustomTemplateControlTest');
		$this->assertContains('Add Dynamic Custom TTemplateControl Test', $this->source());
		$this->assertText("{$base}label1", 'Label 1');

		$this->type("{$base}foo", 'Foo Bar!');
		$this->byId("{$base}button2")->click();
		$this->pause(800);

		$this->assertVisible("{$base}ctl0_ThePanel");
		$this->assertContains("Client ID: {$base}ctl0_ThePanel", $this->source());

		$this->assertText("{$base}label1", 'Button 1 was clicked Foo Bar! using callback!... and this is the textbox text: Foo Bar!');
	}
}