summaryrefslogtreecommitdiff
path: root/tests/FunctionalTests/tickets/tests/Ticket745TestCase.php
blob: f822e37f646eb3146db9ed3795bb7d0fee0bfdd1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?php
class Ticket745TestCase extends PradoGenericSeleniumTest
{
	function test()
	{
		$base = 'ctl0_Content_';
		$this->open('tickets/index.php?page=Ticket745');
		$this->assertTitle("Verifying Ticket 745");
		
		$this->select($base.'Wizard1_DropDownList1', 'Green');
		$this->click($base.'Wizard1_ctl4_ctl1');
		$this->pause(800);
		$this->assertTextPresent ('Step 3 of 3');
		
	}

}