blob: 086fb4c10658a94008f67219a9be052234a41e29 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
 | <?php
class PanelTestCase extends SeleniumTestCase
{
	function test ()
	{
		$this->open("../../demos/quickstart/index.php?page=Controls.Samples.TPanel.Home&notheme=true&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'.");
	}
}
?>
 |