summaryrefslogtreecommitdiff
path: root/tests/FunctionalTests/active-controls/tests/ActivePanelTestCase.php
blob: 9b069a14973f71ea88f679033a8996a5a4df1514 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php

class ActivePanelTestCase extends PradoGenericSeleniumTest
{
	function test()
	{
		$this->open("active-controls/index.php?page=ActivePanelTest");
		$this->verifyTextPresent("Active Panel replacement tests");
		$this->assertTextNotPresent('Something lalala');
		$this->click("div1");
		$this->pause(800);
		$this->assertTextPresent("Something lalala");
	}
}