summaryrefslogtreecommitdiff
path: root/tests/FunctionalTests/tickets/tests/Ticket876TestCase.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/FunctionalTests/tickets/tests/Ticket876TestCase.php')
-rwxr-xr-xtests/FunctionalTests/tickets/tests/Ticket876TestCase.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/FunctionalTests/tickets/tests/Ticket876TestCase.php b/tests/FunctionalTests/tickets/tests/Ticket876TestCase.php
index 8d64d60d..29d4d6c6 100755
--- a/tests/FunctionalTests/tickets/tests/Ticket876TestCase.php
+++ b/tests/FunctionalTests/tickets/tests/Ticket876TestCase.php
@@ -8,14 +8,14 @@ class Ticket876TestCase extends PradoGenericSelenium2Test {
$base = 'ctl0_Content_';
$this->assertElementPresent('xpath=//link[@rel="stylesheet"]');
- $this->clickAndWait($base.'Button');
+ $this->byId($base.'Button')->click();
$this->assertElementNotPresent('xpath=//link[@rel="stylesheet"]');
/*$this->select($base.'Date_month', 10);
$this->select($base.'Date_day', 22);
- $this->clickAndWait($base.'SendButton');
- $this->assertTextPresent('2008-10-22');*/
+ $this->byId($base.'SendButton')->click();
+ $this->assertContains('2008-10-22', $this->source());*/
}
}