summaryrefslogtreecommitdiff
path: root/tests/FunctionalTests/active-controls/protected/pages/ActiveHyperLinkTest.php
blob: ef3f597e6007481a6205d88b33e98acb31b0835e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?php

class ActiveHyperLinkTest extends TPage
{
	function change_text()
	{
		$this->link1->Text = "Pradosoft.com";
	}
	
	function change_image()
	{
		$this->link1->ImageUrl = "...";
	}
	
	function change_target()
	{
		$this->link1->Target = "_top";
	}
	
	function change_url()
	{
		$this->link1->NavigateUrl = "http://www.xlab6.com";
	}
}