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

class Ticket28TestCase extends SeleniumTestCase
{
	
	function test()
	{
		$this->open('tickets/index.php?page=Ticket28');
		$this->assertTextPresent('Label 1');
		$this->clickAndWait('link=Click Me');
		$this->assertTextPresent('Link Button 1 Clicked!');
	}
}

?>