blob: 4dbc19dea79b65c728b58c8d3ee43520d03ff4ff (
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
38
39
|
<?php
class QuickstartMultiViewTestCase extends PradoGenericSelenium2Test
{
function test ()
{
$this->url("../../demos/quickstart/index.php?page=Controls.Samples.TMultiView.Home&notheme=true&lang=en");
$this->assertEquals("PRADO QuickStart Sample", $this->title());
// view 1 : type in a string
$this->assertElementNotPresent('ctl0_body_Result1');
$this->assertElementNotPresent('ctl0_body_Result2');
$this->type('ctl0_body_Memo','test');
$this->byName('ctl0$body$ctl0')->click(); // view 2 to select the dropdown
$this->pause(50);
$this->byName('ctl0$body$ctl4')->click();
// view 3 : check if the output is updated
$this->assertSourceContains('Your text input is: test');
$this->assertSourceContains('Your color choice is: Red');
$this->byName('ctl0$body$ctl7')->click();
$this->pause(50);
// view 2 : update dropdownlist
$this->assertElementNotPresent('ctl0_body_Result1');
$this->assertElementNotPresent('ctl0_body_Result2');
$this->select('ctl0$body$DropDownList', "Blue");
$this->byName('ctl0$body$ctl4')->click();
// view 3 : check if the output is updated
$this->assertSourceContains('Your text input is: test');
$this->assertSourceContains('Your color choice is: Blue');
$this->byName('ctl0$body$ctl7')->click();
// view 2 : check if dropdownlist maintains state
$this->assertSelected('ctl0$body$DropDownList', "Blue");
}
}
|