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

class QuickstartTableTestCase extends PradoGenericSeleniumTest
{
	function test ()
	{
		$this->open("../../demos/quickstart/index.php?page=Controls.Samples.TTable.Home&amp;notheme=true&amp;lang=en", "");

		$this->verifyElementPresent("//table[@rules='all' and @border='1']");
		$this->verifyElementPresent("//table/caption[@align='bottom' and text()='This is table caption']");
		$this->verifyElementPresent("//th[text()='header cell 2']");
		$this->verifyElementPresent("//tr[@align='right']/td[text()='text']");
		$this->verifyElementPresent("//td[@align='center' and contains(text(),'cell 5')]");

		$this->verifyElementPresent("//th[text()='Header 1']");
		$this->verifyElementPresent("//td[text()='Cell 1']");
	}
}