blob: 8d1e28fb1c5f2d2b2b7a05b93fef91bc8c23b476 (
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'.");
	}
}
?>
 |