summaryrefslogtreecommitdiff
path: root/tests/FunctionalTests/tickets/tests/Ticket191TestCase.php
blob: c0bccaa9b540812f629032d75068b91a6110c87c (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->byName("ctl0\$Content\$ctl0")->click();
		$this->type("ctl0\$Content\$TextBox", "test");
		$this->byName("ctl0\$Content\$ctl1")->click();
		$this->assertNotVisible('ctl0_Content_ctl2');
	}
}