summaryrefslogtreecommitdiff
path: root/tests/FunctionalTests/tickets/tests/Ticket745TestCase.php
blob: 367ee2fe9c81c4ca4128657bdafb9147fe8347c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?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->byId($base.'Wizard1_ctl4_ctl1')->click();
		$this->pause(800);
		$this->assertSourceContains('Step 3 of 3');
	}

}