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

class Ticket922TestCase extends SeleniumTestCase
{
	function test()
	{
		$this->open('tickets/index.php?page=Ticket922');
		$this->assertTitle("Verifying Ticket 922");
		$base = 'ctl0_Content_';
		
		$this->type($base.'Text', 'two words');
		$this->clickAndWait('ctl0$Content$ctl0');
		$this->assertText($base.'Result','two words');

	}
}

?>