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

class Ticket191TestCase extends SeleniumTestCase
{
	function test()
	{
		$this->open('tickets/index.php?page=Ticket191');
		$this->type("ctl0\$Content\$TextBox2", "test");
		$this->clickAndWait("//input[@type='submit' and @name='ctl0\$Content\$ctl0']", "");
		$this->type("ctl0\$Content\$TextBox", "test");
		$this->clickAndWait("//input[@type='submit' and @name='ctl0\$Content\$ctl1']", "");
		$this->verifyNotVisible('ctl0_Content_ctl2');
	}
}

?>