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