How to set up an assertion to verify the value of an element in PHP-Codeception?

How to set up an assertion to verify the value of an element in PHP-Codeception?

Hi Devan,

To set up an assertion to verify the value of an element in PHP-Codeception, you may refer to the following functions to setup assertion to verify value of an element:

$I->seeElement('.notice');
$I->dontSeeElement('.error');
$I->seeInCurrentUrl('/user/miles');
$I->seeCheckboxIsChecked('#agree');
$I->seeInField('user[name]', 'Miles');
$I->seeLink('Login');