summaryrefslogtreecommitdiff
path: root/tests/FunctionalTests/tickets/tests/Ticket849TestCase.php
blob: e354b126f5824fc06c602c2e99fde0f2709e3263 (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->byId($base.'ctl0')->click();
		$this->pause(800);
		$this->byCssSelector('td.date.today.selected')->click();
		$this->pause(1000);
		$this->assertValue($base.'ctl0', date('m-d-Y'));
	}
}