diff options
-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 468342a5..12cc0b7c 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 |