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

class Ticket191TestCase extends PradoGenericSeleniumTest
{
	function test()
	{
		$this->open('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->verifyNotVisible('ctl0_Content_ctl2');
	}
}