diff options
-rw-r--r-- | tests/FunctionalTests/quickstart_tests/Controls/HyperLinkTestCase.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/FunctionalTests/quickstart_tests/Controls/HyperLinkTestCase.php b/tests/FunctionalTests/quickstart_tests/Controls/HyperLinkTestCase.php index 9d92bbdc..7fb22b04 100644 --- a/tests/FunctionalTests/quickstart_tests/Controls/HyperLinkTestCase.php +++ b/tests/FunctionalTests/quickstart_tests/Controls/HyperLinkTestCase.php @@ -6,7 +6,8 @@ class HyperLinkTestCase extends SeleniumTestCase {
$this->open("../../demos/quickstart/index.php?page=Controls.Samples.THyperLink.Home&functionaltest=true", "");
$this->verifyTitle("PRADO QuickStart Sample", "");
- $this->verifyAttribute("//a[@href=\"http://www.pradosoft.com/\"]/@target","_blank");
+ //$this->verifyAttribute("//a[@href=\"http://www.pradosoft.com/\"]/@target","_blank");
+ $this->verifyHTMLPresent('<a href="http://www.pradosoft.com/" target="_blank" style="background-color:silver;font-style:italic;">PradoSoft.com</a>');
$this->verifyTextPresent("Welcome to", "");
$this->verifyTextPresent("Body contents", "");
$this->verifyElementPresent("//a[img/@alt='Hello World']");
|