blob: d7a5ebec0160d2abdebeba2b6f9880dda72d5a09 (
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 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->byName('ctl0$body$ctl4')->click();
// view 3 : check if the output is updated
$this->assertContains('Your text input is: test', $this->source());
$this->assertContains('Your color choice is: Red', $this->source());
$this->byName('ctl0$body$ctl7')->click();
// 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->assertContains('Your text input is: test', $this->source());
$this->assertContains('Your color choice is: Blue', $this->source());
$this->byName('ctl0$body$ctl7')->click();
// view 2 : check if dropdownlist maintains state
$this->assertSelected('ctl0$body$DropDownList', "Blue");
}
}
|