summaryrefslogtreecommitdiff
path: root/tests/FunctionalTests/tickets/tests/Ticket28TestCase.php
blob: 8926887c8fc86adb906149338ea451b027928db3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?php

class Ticket28TestCase extends PradoGenericSelenium2Test
{

	function test()
	{
		$this->url('tickets/index.php?page=Ticket28');
		$this->assertSourceContains('Label 1');
		$this->byLinkText("Click Me")->click();
		$this->assertSourceContains('Link Button 1 Clicked!');
	}
}