summaryrefslogtreecommitdiff
path: root/tests/FunctionalTests/active-controls/tests/ActiveDropDownListTestCase.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/FunctionalTests/active-controls/tests/ActiveDropDownListTestCase.php')
-rw-r--r--tests/FunctionalTests/active-controls/tests/ActiveDropDownListTestCase.php28
1 files changed, 14 insertions, 14 deletions
diff --git a/tests/FunctionalTests/active-controls/tests/ActiveDropDownListTestCase.php b/tests/FunctionalTests/active-controls/tests/ActiveDropDownListTestCase.php
index 5806a3ec..9d3ad9c3 100644
--- a/tests/FunctionalTests/active-controls/tests/ActiveDropDownListTestCase.php
+++ b/tests/FunctionalTests/active-controls/tests/ActiveDropDownListTestCase.php
@@ -6,33 +6,33 @@ class ActiveDropDownListTestCase extends SeleniumTestCase
{
$this->open("active-controls/index.php?page=ActiveDropDownList");
$this->assertTextPresent('Active Drop Down List Test Case');
-
+
$this->assertText("label1", "Label 1");
-
+
$this->click("button1");
- $this->pause(500);
+ $this->pause(800);
$this->assertSelected("list1", "item 4");
-
+
$this->click("button2");
- $this->pause(500);
+ $this->pause(800);
$this->assertEmptySelection("list1");
-
+
$this->click("button3");
- $this->pause(500);
+ $this->pause(800);
$this->assertSelected("list1", "item 2");
-
+
// due to clearing selection and then updating the selection
// otherwise it should not fire the changed event (fired by js because of change to options).
- $this->assertText("label1", "Selection 1: value 1");
-
+ $this->assertText("label1", "Selection 1: value 1");
+
$this->select("list2", "value 1 - item 4");
- $this->pause(500);
+ $this->pause(800);
$this->assertText("label1", "Selection 2: value 1 - item 4");
-
+
$this->select("list1", "item 3");
- $this->pause(500);
+ $this->pause(800);
$this->select("list2", "value 3 - item 5");
- $this->pause(500);
+ $this->pause(800);
$this->assertText("label1", "Selection 2: value 3 - item 5");
}