summaryrefslogtreecommitdiff
path: root/tests/FunctionalTests/quickstart/Controls/PanelTestCase.php
blob: 1360ec2f6bd18315a6053fe9d5f23511a4c123ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php

class QuickstartPanelTestCase extends PradoGenericSelenium2Test
{
	function test ()
	{
		$this->url("../../demos/quickstart/index.php?page=Controls.Samples.TPanel.Home&amp;notheme=true&amp;lang=en");
		$this->assertTextPresent("This is panel content with", "");
		$this->assertElementPresent("//span[text()='label']");
		$this->assertTextPresent("grouping text", "");
		$this->click("//input[@name='ctl0\$body\$ctl17']", "");
		$this->assertTextNotPresent("You have clicked on 'button2'.");
		$this->clickAndWait("//input[@type='submit' and @value='button2']", "");
		$this->assertTextPresent("You have clicked on 'button2'.");
	}
}