summaryrefslogtreecommitdiff
path: root/tests/FunctionalTests/quickstart/Controls/Repeater2TestCase.php
blob: 7d989fd052c0f1f3cb81670838f0d05fa70b9877 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<?php

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

		// verify if all required texts are present
		$this->verifyTextPresent('North','');
		$this->verifyTextPresent('John','');
		$this->verifyTextPresent('Developer','');
		$this->verifyTextPresent('South','');
		$this->verifyTextPresent('Carter','');
		$this->verifyTextPresent('Program Manager','');

		// verify specific table tags
		$this->verifyElementPresent("//table[@cellspacing='1']");
		$this->verifyElementPresent("//td[@id='ctl0_body_Repeater_ctl1_Cell' and contains(text(),'North')]","");
		$this->verifyElementPresent("//td[@id='ctl0_body_Repeater_ctl1_Cell']","");
		$this->verifyElementPresent("//td[@id='ctl0_body_Repeater_ctl2_Cell']","");
		$this->verifyElementPresent("//td[@id='ctl0_body_Repeater_ctl3_Cell']","");
		$this->verifyElementPresent("//td[@id='ctl0_body_Repeater_ctl4_Cell']","");
		$this->verifyElementPresent("//tr[@id='ctl0_body_Repeater_ctl1_Repeater2_ctl1_Row']","");
		$this->verifyElementPresent("//tr[@id='ctl0_body_Repeater_ctl1_Repeater2_ctl2_Row']","");
		$this->verifyElementPresent("//tr[@id='ctl0_body_Repeater_ctl1_Repeater2_ctl3_Row']","");
		$this->verifyElementPresent("//tr[@id='ctl0_body_Repeater_ctl2_Repeater2_ctl1_Row']","");
		$this->verifyElementPresent("//tr[@id='ctl0_body_Repeater_ctl2_Repeater2_ctl2_Row']","");
		$this->verifyElementPresent("//tr[@id='ctl0_body_Repeater_ctl2_Repeater2_ctl3_Row']","");
		$this->verifyElementPresent("//tr[@id='ctl0_body_Repeater_ctl3_Repeater2_ctl1_Row']","");
		$this->verifyElementPresent("//tr[@id='ctl0_body_Repeater_ctl3_Repeater2_ctl2_Row']","");
		$this->verifyElementPresent("//tr[@id='ctl0_body_Repeater_ctl4_Repeater2_ctl1_Row']","");
		$this->verifyElementPresent("//tr[@id='ctl0_body_Repeater_ctl4_Repeater2_ctl2_Row']","");
	}
}