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

class ActivePanelTestCase extends SeleniumTestCase
{
	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(500);
		$this->assertTextPresent("Something lalala");
	}
}

?>