我正在检查 Codeception,并且正在尝试编写自己的抓取器。
在我的 WebHelper.php 中:
function grabMaxOffers()
{
return 10;
}
(注意:最终,这将返回一个动态值)
在我的 TestCept.php 文件中:
$max = $I->grabMaxOffers();
$I->wantToTest("Maximum offers ($max)");
我总是得到的错误是:
PHP 通知:Codeception\Maybe 类的对象无法在第 21 行的 tests/acceptance/TestCept.php 中转换为 int
我错过了什么?我写了另外两个运行良好的抓取器(返回字符串)。