summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorFabio Bas <ctrlaltca@gmail.com>2014-02-19 19:27:05 +0100
committerFabio Bas <ctrlaltca@gmail.com>2014-02-19 19:27:05 +0100
commit410af66fc8843177bb68561e556d7bd51c4d71c1 (patch)
tree09216994a10842ea9daf045a40bd3b57a7ad0299 /tests
parent0700ac0eb6d1cb884ca6d568f798ed785c38e908 (diff)
Fix test for firefox
Diffstat (limited to 'tests')
-rwxr-xr-xtests/FunctionalTests/tickets/tests/Ticket769TestCase.php5
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/FunctionalTests/tickets/tests/Ticket769TestCase.php b/tests/FunctionalTests/tickets/tests/Ticket769TestCase.php
index 38a6212b..258a09a7 100755
--- a/tests/FunctionalTests/tickets/tests/Ticket769TestCase.php
+++ b/tests/FunctionalTests/tickets/tests/Ticket769TestCase.php
@@ -15,7 +15,7 @@ class Ticket769TestCase extends PradoGenericSeleniumTest
$this->click($base.'ctl0');
$this->pause(800);
$this->assertNotVisible($base.'ctl1');
- $this->verifyTextPresent($base.'ctl0', 'T1 clicked' );
+ $this->assertEquals($this->getValue($base.'ctl0'), 'T1 clicked' );
$this->click($base.'ctl2');
$this->pause(800);
@@ -30,7 +30,6 @@ class Ticket769TestCase extends PradoGenericSeleniumTest
$this->click($base.'ctl0');
$this->pause(800);
$this->assertNotVisible($base.'ctl1');
- $this->verifyTextPresent($base.'ctl0', 'T1 clicked clicked' );
-
+ $this->assertEquals($this->getValue($base.'ctl0'), 'T1 clicked clicked' );
}
} \ No newline at end of file