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

class Ticket526TestCase extends PradoGenericSeleniumTest
{
	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");
	}
}