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

class Ticket72TestCase extends PradoGenericSeleniumTest
{
	function test()
	{
		$this->open('tickets/index.php?page=Ticket72');
		$this->type("ctl0\$Content\$K1", "abc");
		$this->type("ctl0\$Content\$K2", "efg");
		$this->clickAndWait("//input[@type='submit' and @value='Send']", "");
		$this->verifyTextPresent("efg", "");
		$this->verifyTextNotPresent("abcefg", "");
	}
}