我想为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