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

class Ticket922TestCase extends PradoGenericSeleniumTest
{
	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');

	}
}