Codeception - 无法找到并加载Webhelper

时间:2016-09-14 08:47:58

标签: codeception

我想为Codeception配置我的selenium webdriver。我正在编辑acceptance.suite.yml文件并收到此错误:

更新:

  

无法找到并加载模块Web

更新:

class_name: AcceptanceTester
modules:
    enabled:
        - WebDriver
        - \Helper\Web // Does not work
        - \Helper\Acceptance
    config:
      PhpBrowser:
            url: 'http://localhost/'
      WebDriver:
            url: 'http://localhost/'
            browser: 'chrome'

测试代码:

<?php 
$I = new AcceptanceTester($scenario);
$I->wantTo('perform actions and see result');
$I->amOnPage('/');
$I->see('Overview');
?>

编辑:没有\Helper\Web它可以正常工作,但在网址中只写data:,而不是localhost

0 个答案:

没有答案