我正在尝试测试一个项目,但由于此错误而无法检查登录页面:
[RuntimeException] Call to undefined method AcceptanceTester::loadSessionSnapshot
这是我的代码:

<?php
$I = new AcceptanceTester($scenario);
$I->wantTo('Login');
$I->amOnPage('/');
if($I->loadSessionSnapshot('loggedin')) exit();
$I->dontSee('NotFound');
//$I->dontSee('Error');
$csrf = $I->grabCookie('_token');
$I->submitForm('.form',array('login'=>array(
        'username'=>'username',
        'password'=>'*******'
    )
));
$I->saveSessionSnapshot('loggedin');
$I->see('username');

我的配置是这样的
# Codeception Test Suite Configuration
#
# Suite for acceptance tests.
# Perform tests in browser using the WebDriver or PhpBrowser.
# If you need both WebDriver and PHPBrowser tests - create a separate suite.

class_name: AcceptanceTester
modules:
    enabled:
        - PhpBrowser:
            url: http://myweb.com
        - \Helper\Acceptance

我使用命令行命令生成了这个
codecept.bat generate:cept acceptance loginTest

最佳答案

PhpBrowser模块中没有这样的方法,
loadSessionSnapshot方法仅由
WebDriver

不要在测试中使用exit(),它也会杀死Codeception。
请改用跳过方法。

if($I->loadSessionSnapshot('loggedin')) {
    $scenario->skip('Already logged in');
}

关于Codeception AcceptanceTester::loadSessionSnapshot未定义,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/33273378/

10-12 23:07