blob: a9aa0bbe363150612397b3a3f6a1da31fac53601 (
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->assertEquals("PRADO QuickStart Sample", $this->title());
$this->assertContains("This is a label with customized color and font.", $this->source());
$this->assertContains("This is a form label associated with the TTextBox control below", $this->source());
$this->assertContains("This is a label with empty Text property and <b>nonempty body</b>", $this->source());
$this->assertContains("This is a disabled label", $this->source());
$this->assertAttribute("ctl0_body_Label2@disabled","regexp:true|disabled");
//$this->assertAttribute("ctl0_body_Label1@for","ctl0_body_test");
$this->type("ctl0\$body\$test", "test");
}
}
|