summaryrefslogtreecommitdiff
path: root/tests/FunctionalTests/tickets/tests/Ticket656TestCase.php
blob: 9fe238b917265ff81d4506bfc0705c13344e77a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?php
class Ticket656TestCase extends PradoGenericSeleniumTest
{
	function test()
	{
		$base = 'ctl0_Content_';
		$this->open('tickets/index.php?page=Ticket656');
		$this->assertTitle("Verifying Ticket 656");

		// First test, current date
		$this->click($base."btnUpdate");
		$this->pause(800);
		$this->assertText($base."lblStatus",date("d-m-Y"));

		// Then, set another date
		$year=date('Y')-2;
		$this->select($base."datePicker_day",20);
		$this->select($base."datePicker_month", 10);
		$this->select($base."datePicker_year", $year);
		$this->click($base."btnUpdate");
		$this->pause(800);
		$this->assertText($base."lblStatus",date("d-m-Y", mktime(0,0,0,10,20,$year)));
	}

}