You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Try running with the --debug option. You should also be able to view the failure in the _output folder. Take a look at my functional test output as an example:
My Test:
publicfunctioncheckSuccessVerification(FunctionalTester$I)
{
$I->amOnRoute('site/verify-email', ['token' => '4ch0qbfhvWwkcuWqjN8SWRq72SOw1KYT_1548675330']);
$I->canSee('Your email has been confirmed! Upon our approval you will receive a welcome email.');
$I->canSee('Sales Agent portal!', 'h1');
$I->seeRecord('common\models\User', [
'email' => 'test@mail.com',
'status' => \common\models\User::STATUS_VERIFIED
]);
}
I've had an occasional flaky issue where a step fails because it can't see a string, but the failure output very obviously has the string on the page!
For example:
But the output shows:
which very clearly does have "Funds" on the page!
Is this something that anyone else has seen - does anyone have any idea how I can sort it?
The text was updated successfully, but these errors were encountered: