summaryrefslogtreecommitdiff
path: root/tests/FunctionalTests/tickets/tests/Ticket691TestCase.php
blob: a441f82c0f74374bf3307a7c7019635af062c036 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php
class Ticket691TestCase extends PradoGenericSeleniumTest
{
	function test()
	{
		$base = 'ctl0_Content_';
		$this->open('tickets/index.php?page=Ticket691');
		$this->assertTitle("Verifying Ticket 691");
		
		$this->click($base."List_c2");
		$this->pause(800);
		$this->assertText($base."Title", "Thanks");
		$this->assertText($base."Result", "You vote 3");
	}

}