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

class ActiveControlExpressionTagTestCase extends PradoGenericSelenium2Test
{
	function test()
	{
		$base='ctl0_Content_';
		$this->url('active-controls/index.php?page=ActiveControlExpressionTag');
		$this->assertContains('Active Control With Expression Tag Test', $this->source());
		$this->assertNotContains('Text box content:', $this->source());

		$this->type("{$base}textbox1", 'Hello world');
		$this->byId("{$base}button1")->click();
		$this->pause(800);

		$this->assertText("repeats", 'result - 1 result - two');
		$this->assertText("contents", 'Text box content: Hello world');
	}
}