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

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

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

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