diff options
author | Fabio Bas <ctrlaltca@gmail.com> | 2014-02-19 19:27:05 +0100 |
---|---|---|
committer | Fabio Bas <ctrlaltca@gmail.com> | 2014-02-19 19:27:05 +0100 |
commit | 410af66fc8843177bb68561e556d7bd51c4d71c1 (patch) | |
tree | 09216994a10842ea9daf045a40bd3b57a7ad0299 /tests/FunctionalTests/tickets | |
parent | 0700ac0eb6d1cb884ca6d568f798ed785c38e908 (diff) |
Fix test for firefox
Diffstat (limited to 'tests/FunctionalTests/tickets')
-rwxr-xr-x | tests/FunctionalTests/tickets/tests/Ticket769TestCase.php | 5 |
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 |