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

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