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
{{ message }}
This repository was archived by the owner on Mar 17, 2020. It is now read-only.
/** * @Then I should see the :arg1 message */publicfunctioniShouldSeeTheMessage($message)
{
$I = $this;
$I->waitForPageTitle('Articles');
$I->see($message, AdminPage::$systemMessageContainer);
}
To:
/** * @Then I should see the :arg1 message */publicfunctioniShouldSeeTheMessage($message)
{
$I = $this;
$I->waitForText($message, AdminPage::$systemMessageContainer);
$I->see($message, AdminPage::$systemMessageContainer);
}
Also since this step is generic, it would not necessarily be defined in Content or User steps, maybe there can be a generic Administrator step?