diff options
Diffstat (limited to 'tests/FunctionalTests/active-controls/protected/pages/ActiveHyperLinkTest.php')
-rw-r--r-- | tests/FunctionalTests/active-controls/protected/pages/ActiveHyperLinkTest.php | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/tests/FunctionalTests/active-controls/protected/pages/ActiveHyperLinkTest.php b/tests/FunctionalTests/active-controls/protected/pages/ActiveHyperLinkTest.php new file mode 100644 index 00000000..cd4880d2 --- /dev/null +++ b/tests/FunctionalTests/active-controls/protected/pages/ActiveHyperLinkTest.php @@ -0,0 +1,26 @@ +<?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"; + } +} + +?>
\ No newline at end of file |