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

class Ticket849TestCase extends PradoGenericSelenium2Test
{
	function test()
	{
		$this->url('tickets/index.php?page=Ticket849');
		$this->assertEquals($this->title(), "Verifying Ticket 849");
		$base='ctl0_Content_';
		$this->click($base.'ctl0');
		$this->pause(800);
		$this->click('css=td.date.today.selected');
		$this->pause(1000);
		$this->assertValue($base.'ctl0', date('m-d-Y'));
	}
}