summaryrefslogtreecommitdiff
path: root/tests/FunctionalTests/tickets/tests/Ticket745TestCase.php
blob: c23aa90011394908b0c44345ad896a6237f2710b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?php
class Ticket745TestCase extends PradoGenericSelenium2Test
{
	function test()
	{
		$base = 'ctl0_Content_';
		$this->url('tickets/index.php?page=Ticket745');
		$this->assertEquals($this->title(), "Verifying Ticket 745");

		$this->select($base.'Wizard1_DropDownList1', 'Green');
		$this->click($base.'Wizard1_ctl4_ctl1');
		$this->pause(800);
		$this->assertTextPresent ('Step 3 of 3');

	}

}