summaryrefslogtreecommitdiff
path: root/tests/FunctionalTests/tickets/tests/Ticket622TestCase.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/FunctionalTests/tickets/tests/Ticket622TestCase.php')
-rwxr-xr-xtests/FunctionalTests/tickets/tests/Ticket622TestCase.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/FunctionalTests/tickets/tests/Ticket622TestCase.php b/tests/FunctionalTests/tickets/tests/Ticket622TestCase.php
index e26da1f1..672a1d18 100755
--- a/tests/FunctionalTests/tickets/tests/Ticket622TestCase.php
+++ b/tests/FunctionalTests/tickets/tests/Ticket622TestCase.php
@@ -8,10 +8,10 @@ class Ticket622TestCase extends PradoGenericSelenium2Test
$this->url('tickets/index.php?page=Ticket622');
$this->assertEquals($this->title(), "Verifying Ticket 622");
- $this->click($base.'ctl0');
+ $this->byId($base.'ctl0')->click();
$this->pause(800);
- $this->verifyAttribute($base.'ALB@style','');
- $this->verifyAttribute('css=span#acb span@style', '');
- $this->verifyAttribute('css=span#arb span@style', '');
+ $this->assertAttribute($base.'ALB@style','');
+ $this->assertAttribute('css=span#acb span@style', '');
+ $this->assertAttribute('css=span#arb span@style', '');
}
}