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

class Ticket439TestCase extends PradoGenericSeleniumTest
{
	function test()
	{
		$base = 'ctl0_Content_';
		$this->open('tickets/index.php?page=Ticket439');
		$this->assertTitle("Verifying Ticket 439");
		$this->click("{$base}button1");
		$this->waitForPageToLoad(3000);
		$this->pause(800);
		$this->assertTitle("Verifying Home");
	}
}