I am totally new to CodeCeption. I have the below html inside the body,
<div><input type="text" name="content_id" id="contentId" maxlength="10" value="123"></div>
In CodeCeption acceptance test I have a this below code
`<?php
$I = new AcceptanceTester($scenario);
$I->wantTo('fillfield test');
$I->amOnPage('/');
$I->seeInField('#contentId', 123);
$I->fillField('#contentId', 222397);
?>`
seeInField Test passes successfully, but fillField throws an error
Sorry, I couldn't fill field "#contentId", 222397
InvalidArgumentException: The current node list is empty
This stops me to proceed further. Help me out on this.