blob: 96873c00c277a73724582fc0760f0c71b366516b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<?php
//New Test
class QuickstartLabelTestCase extends PradoGenericSelenium2Test
{
function test ()
{
$this->url("../../demos/quickstart/index.php?page=Controls.Samples.TLabel.Home&notheme=true&lang=en");
$this->verifyTitle("PRADO QuickStart Sample", "");
$this->assertTextPresent("This is a label with customized color and font.", "");
$this->assertTextPresent("This is a form label associated with the TTextBox control below", "");
$this->assertTextPresent("This is a label with empty Text property and <b>nonempty body</b>", "");
$this->assertTextPresent("This is a disabled label", "");
$this->verifyAttribute("ctl0_body_Label2@disabled","regexp:true|disabled");
//$this->verifyAttribute("ctl0_body_Label1@for","ctl0_body_test");
$this->type("ctl0\$body\$test", "test");
}
}
|