The code below for example does verification of the schema.
$I->seeResponseIsValidOnJsonSchemaString
But I need access to the raw response and cannot find a way to get this response from available method.
namespace frontend\tests\Api;
use frontend\tests\ApiTester;
use Codeception\Util\HttpCode;
class UserCest
{
public function _before(ApiTester $I)
{
}
// tests
public function tryToTest(ApiTester $I)
{
}
public function RegisterUserStep1(ApiTester $I)
{