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

class Ticket922TestCase extends PradoGenericSelenium2Test
{
	function test()
	{
		$this->url('tickets/index.php?page=Ticket922');
		$this->assertEquals($this->title(), "Verifying Ticket 922");
		$base = 'ctl0_Content_';

		$this->type($base.'Text', 'two words');
		$this->clickAndWait('ctl0$Content$ctl0');
		$this->assertText($base.'Result','two words');

	}
}