blob: 65fd23fbe5994a54959d502f7e749e8d8f85e03f (
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
28
29
30
31
32
|
<?php
class QuickstartLinkButtonTestCase extends PradoGenericSelenium2Test
{
function test ()
{
$this->url("../../demos/quickstart/index.php?page=Controls.Samples.TLinkButton.Home&notheme=true&lang=en");
$this->verifyTitle("PRADO QuickStart Sample", "");
// regular buttons
$this->clickAndWait("link=link button", "");
$this->clickAndWait("//a[contains(text(),'body content')]", "");
// a click button
$this->clickAndWait("link=click me", "");
$this->clickAndWait("link=I'm clicked", "");
// a command button
$this->clickAndWait("link=click me", "");
$this->clickAndWait("//a[contains(text(),'Name: test, Param: value')]", "");
// a button causing validation
$this->assertNotVisible('ctl0_body_ctl4');
$this->click("link=submit", "");
// $this->pause(1000);
$this->assertVisible('ctl0_body_ctl4');
$this->type("ctl0\$body\$TextBox", "test");
$this->clickAndWait("link=submit", "");
$this->assertNotVisible('ctl0_body_ctl4');
}
}
|