summaryrefslogtreecommitdiff
path: root/tests/FunctionalTests/tickets/tests/Ticket922TestCase.php
blob: f03f980e2ff6fb0632948ec541cf96b7d40d8911 (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->byName('ctl0$Content$ctl0')->click();
		$this->assertText($base.'Result','two words');

	}
}