summaryrefslogtreecommitdiff
path: root/tests/FunctionalTests/quickstart_tests/Controls/ImageTestCase.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/FunctionalTests/quickstart_tests/Controls/ImageTestCase.php')
-rw-r--r--tests/FunctionalTests/quickstart_tests/Controls/ImageTestCase.php6
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/FunctionalTests/quickstart_tests/Controls/ImageTestCase.php b/tests/FunctionalTests/quickstart_tests/Controls/ImageTestCase.php
index 26d04719..adc2a4cf 100644
--- a/tests/FunctionalTests/quickstart_tests/Controls/ImageTestCase.php
+++ b/tests/FunctionalTests/quickstart_tests/Controls/ImageTestCase.php
@@ -6,12 +6,14 @@ class ImageTestCase extends SeleniumTestCase
function test ()
{
$this->open("../../demos/quickstart/index.php?page=Controls.Samples.TImage.Home&functionaltest=true", "");
+
$this->verifyTitle("PRADO QuickStart Sample", "");
- $this->verifyElementPresent("//img[contains(@src,'/hello_world.gif') and @alt='']");
+
+ //$this->verifyElementPresent("//img[contains(@src,'/hello_world.gif') and @alt='']");
$this->verifyElementPresent("//img[contains(@src,'/hello_world.gif') and @alt='Hello World!']");
$this->verifyTextPresent("Hello World! Hello World! Hello World!", "");
$this->verifyElementPresent("//img[contains(@src,'/hello_world.gif') and @align='baseline']");
- $this->verifyElementPresent("//img[contains(@src,'/hello_world.gif') and contains(@longdesc,'HelloWorld.html')]");
+ //$this->verifyElementPresent("//img[contains(@src,'/hello_world.gif') and contains(@longdesc,'HelloWorld.html')]");
}
}