summaryrefslogtreecommitdiff
path: root/tests/FunctionalTests/tickets/tests/Ticket745TestCase.php
blob: 492b10ae874f38dffb9d317b895793263c14b641 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?php
class Ticket745TestCase extends SeleniumTestCase
{
	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');
		
	}

}
?>