summaryrefslogtreecommitdiff
path: root/tests/FunctionalTests/framework/Web/UI/testTButton.php
blob: 09ba28f64bbf21b4142363ad04691bde1234e5fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?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);
	}
}

?>