summaryrefslogtreecommitdiff
path: root/tests/FunctionalTests/tickets/tests/Ticket922TestCase.php
blob: ddc01d281b96f7ac58619399a968e5f65d49b9cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?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->pause(50);
		$this->assertText($base.'Result','two words');

	}
}