summaryrefslogtreecommitdiff
path: root/tests/FunctionalTests/tickets/tests/Ticket745TestCase.php
blob: 690df8a10b54c40bb38988e88a5bce6a9081c3d4 (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->assertContains('Step 3 of 3', $this->source());
	}

}