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

class Ticket849TestCase extends SeleniumTestCase
{
	function test()
	{
		$this->open('tickets/index.php?page=Ticket849');
		$this->assertTitle("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'));
	}
}

?>