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

class ActiveHyperLinkTestCase extends PradoGenericSeleniumTest
{
	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");
	}
}