summaryrefslogtreecommitdiff
path: root/tests/FunctionalTests/active-controls/tests/ActivePanelTestCase.php
blob: 4c8fd3c632e4d4aa70af60c66a78a013b9fa1024 (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(800);
		$this->assertTextPresent("Something lalala");
	}
}

?>