blob: 03081f9e851b3a424f34a4bc47e848d952c46b76 (
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
<?php
class ActiveCheckBoxListTestCase extends SeleniumTestCase
{
function test()
{
//problem with test runner clicking on radio buttons
$this->skipBrowsers(self::OPERA);
$this->open("active-controls/index.php?page=TActiveCheckBoxListTest");
$this->verifyTextPresent("TActiveCheckBoxList Test Case");
$this->assertText("label1", "Label 1");
$this->click("button1");
$this->pause(800);
$this->assertCheckBoxes(array(1,2,3));
$this->click("button2");
$this->pause(800);
$this->assertCheckBoxes(array());
$this->click("button3");
$this->pause(800);
$this->assertCheckBoxes(array(0));
$this->click("button4");
$this->pause(800);
$this->assertCheckBoxes(array(4));
$this->click("button5");
$this->pause(800);
$this->assertCheckBoxes(array(1,4));
$this->click("list1_c2");
$this->pause(800);
$this->assertText("label1", "Selection: value 2, value 3, value 5");
$this->click("list1_c2");
$this->pause(800);
$this->assertText("label1", "Selection: value 2, value 5");
}
function assertCheckBoxes($checks, $total = 5)
{
for($i = 0; $i < $total; $i++)
{
if(in_array($i, $checks))
$this->assertChecked("list1_c{$i}");
else
$this->assertNotChecked("list1_c{$i}");
}
}
}
?>
|