summaryrefslogtreecommitdiff
path: root/tests/FunctionalTests/quickstart/Controls/BulletedListTestCase.php
blob: 75c0383a40f7c1e83e563009b8ed9af889844ee0 (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
36
<?php

class QuickstartBulletedListTestCase extends PradoGenericSelenium2Test
{
	function test()
	{
		$this->url("../../demos/quickstart/index.php?page=Controls.Samples.TBulletedList.Home&amp;notheme=true&amp;lang=en");

		// verify if all required texts are present
		$this->assertSourceContains('item 1');
		$this->assertSourceContains('item 2');
		$this->assertSourceContains('item 3');
		$this->assertSourceContains('item 4');
		$this->assertSourceContains('google');
		$this->assertSourceContains('yahoo');
		$this->assertSourceContains('amazon');

		// verify order list starting from 5
		$this->assertElementPresent("//ol[@start='5']");

		// unable to verify styles

		// verify hyperlink list
		$this->assertElementPresent("//a[@href='http://www.google.com/']");
		$this->assertElementPresent("//a[@href='http://www.yahoo.com/']");
		$this->assertElementPresent("//a[@href='http://www.amazon.com/']");

		// verify linkbutton list
		$this->byId("ctl0_body_ctl40")->click();
		$this->assertSourceContains("You clicked google : http://www.google.com/.");
		$this->byId("ctl0_body_ctl41")->click();
		$this->assertSourceContains("You clicked yahoo : http://www.yahoo.com/.");
		$this->byId("ctl0_body_ctl42")->click();
		$this->assertSourceContains("You clicked amazon : http://www.amazon.com/.");
	}
}