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

class Ticket526TestCase extends SeleniumTestCase
{
	function test()
	{
		$base="ctl0_Content_";
		$this->open('tickets/index.php?page=Ticket526');
		$this->verifyTitle("Verifying Ticket 526", "");

		$this->assertElementNotPresent("{$base}dpbutton");

		$this->click("{$base}btn");
		$this->pause(800);
		$this->assertElementPresent("{$base}dpbutton");
	}
}
?>