summaryrefslogtreecommitdiff
path: root/tests/FunctionalTests/quickstart/Controls/ButtonTestCase.php
blob: ad84e1d0c5911ce96266660dd262e6db1b6d3731 (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 QuickstartButtonTestCase extends PradoGenericSeleniumTest
{
	function test ()
	{
		$this->open("../../demos/quickstart/index.php?page=Controls.Samples.TButton.Home&amp;notheme=true&amp;lang=en", "");

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

		// a regular button
		$this->clickAndWait("//input[@type='submit' and @value='text']", "");

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

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

		// a button causing validation
		$this->verifyNotVisible('ctl0_body_ctl3');
		$this->click("//input[@type='submit' and @value='submit']", "");
//		$this->pause(1000);
		$this->verifyVisible('ctl0_body_ctl3');
		$this->type("ctl0\$body\$TextBox", "test");
		$this->clickAndWait("//input[@type='submit' and @value='submit']", "");
		$this->verifyNotVisible('ctl0_body_ctl3');
	}
}