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

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