summaryrefslogtreecommitdiff
path: root/tests/FunctionalTests/tickets/tests/Ticket439TestCase.php
blob: f586a6c95a7adf59f9240956affe0988868dfa8a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php

class Ticket439TestCase extends PradoGenericSelenium2Test
{
	function test()
	{
		$base = 'ctl0_Content_';
		$this->url('tickets/index.php?page=Ticket439');
		$this->assertEquals($this->title(), "Verifying Ticket 439");
		$this->byId("{$base}button1")->click();
		$this->pause(800);
		$this->assertEquals($this->title(), "Verifying Home");
	}
}