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

class TextBoxCallbackTestCase extends PradoGenericSeleniumTest
{
	function test()
	{
		$this->open("active-controls/index.php?page=ActiveTextBoxCallback");
		$this->verifyTextPresent("ActiveTextBox Callback Test");
		$this->assertText("label1", "Label 1");

		$this->type("textbox1", "hello!");
		$this->pause(800);
		$this->assertText("label1", "Label 1: hello!");
	}
}