summaryrefslogtreecommitdiff
path: root/tests/FunctionalTests/quickstart/Controls/ImageTestCase.php
blob: a0ad6d6b360b16770d3e6bbedbd6fa44cc96296e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?php

//New Test
class ImageTestCase extends SeleniumTestCase
{
	function test ()
	{
		$this->open("../../demos/quickstart/index.php?page=Controls.Samples.TImage.Home&amp;notheme=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='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')]");
	}
}

?>