blob: 46da58fed1ffeacd1e454c0571987471f435d847 (
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
25
26
27
|
<?php
class testTButton extends TPage
{
function onLoad($param)
{
$this->button2;
}
}
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);
}
}
?>
|