summaryrefslogtreecommitdiff
path: root/tests/FunctionalTests/quickstart/ActiveControls/ActiveButtonTestCase.php
blob: 0386144048af0d965c63f6410bab8af72e28fc63 (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
35
36
<?php
//$Id: ActiveButtonTestCase.php 3187 2012-07-12 11:21:01Z ctrlaltca $
class QuickstartActiveButtonTestCase extends PradoGenericSeleniumTest
{
	function test ()
	{
		$this->open("../../demos/quickstart/index.php?page=ActiveControls.Samples.TActiveButton.Home&amp;notheme=true&amp;lang=en");

		$this->verifyTitle("PRADO QuickStart Sample", "");

		$this->assertTextPresent('TActiveButton Samples (AJAX)');

		// a click button
		$this->verifyElementNotPresent("//input[@type='submit' and @value=\"I'm clicked\"]");
		$this->click("//input[@type='submit' and @value='click me']", "");
		$this->pause(800);
		$this->verifyElementPresent("//input[@type='submit' and @value=\"I'm clicked\"]");

		// a command button
		$this->verifyElementNotPresent("//input[@type='submit' and @value=\"Name: test, Param: value using callback\"]");
		$this->click("//input[@type='submit' and @value='click me']", "");
		$this->pause(800);
		$this->verifyElementPresent("//input[@type='submit' and @value=\"Name: test, Param: value using callback\"]");

		// a button causing validation
		$this->verifyNotVisible('ctl0_body_ctl2');
		$this->click("//input[@type='submit' and @value='submit']", "");
		$this->pause(800);
		$this->verifyVisible('ctl0_body_ctl2');
		$this->type("ctl0\$body\$TextBox", "test");
		$this->click("//input[@type='submit' and @value='submit']", "");
		$this->pause(800);
		$this->verifyNotVisible('ctl0_body_ctl2');
		$this->verifyElementPresent("//input[@type='submit' and @value=\"I'm clicked using callback\"]", "");
	}
}