summaryrefslogtreecommitdiff
path: root/tests/FunctionalTests/tickets/tests/Ticket191TestCase.php
blob: 2b2b1a41067cb905088df39f1f49dc6e2817e534 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php

class Ticket191TestCase extends PradoGenericSelenium2Test
{
	function test()
	{
		$this->url('tickets/index.php?page=Ticket191');
		$this->type("ctl0\$Content\$TextBox2", "test");
		$this->clickAndWait("name=ctl0\$Content\$ctl0");
		$this->type("ctl0\$Content\$TextBox", "test");
		$this->clickAndWait("name=ctl0\$Content\$ctl1");
		$this->assertNotVisible('ctl0_Content_ctl2');
	}
}