summaryrefslogtreecommitdiff
path: root/tests/FunctionalTests/tickets/tests/Ticket28TestCase.php
blob: 92bf1eb9d33f634ea26d228d15747ae1ff2a0969 (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->assertContains('Label 1', $this->source());
		$this->byLinkText("Click Me")->click();
		$this->assertContains('Link Button 1 Clicked!', $this->source());
	}
}