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

class ActiveHyperLinkTestCase extends SeleniumTestCase
{
	function test()
	{
		$this->open("active-controls/index.php?page=ActiveHyperLinkTest");
		$this->assertTextPresent("Active HyperLink Test Case");
		
		$this->assertText("link1", "Link 1");
		
		$this->click("button1");
		$this->pause(500);
		$this->assertText("link1", "Pradosoft.com");
	}
}

?>