summaryrefslogtreecommitdiff
path: root/tests/FunctionalTests/active-controls/tests/ActiveHyperLinkTestCase.php
blob: 6707a44264736a109eda740e617a87b4dc8da60b (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(800);
		$this->assertText("link1", "Pradosoft.com");
	}
}

?>