summaryrefslogtreecommitdiff
path: root/tests/FunctionalTests/framework/Web/UI/testTButton.php
blob: eb4c4987dcdb3fd11a9a5e5f8b74f73e01a7cf1a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?php

class testTButton extends TPage
{

}


class testTButtonCase extends SeleniumTestCase
{
	function setup()
	{
		$this->initPage(__FILE__);
		$this->open($this->Page->Request->TestUrl);
	}

	function testButtonClick()
	{
		$this->assertTextPresent("TButton Functional Test");
		$this->click($this->Page->button1);
	}
}

?>