使用WebDriver进行覆盖的Codeception C3配置

时间:2018-07-24 17:31:07

标签: phpunit codeception

这就是我所做的:

在根目录中添加了c3.php

app_code
├── c3.php
└── index.php

c3.php中包含的index.php

<?php
include 'c3.php';

//some other includes 
?>

已在codeception.yml

中启用覆盖
coverage:
    enabled: true
    remote: false
    c3_url: http://mylocalenv.mine

acceptance.yml中的Webdriver配置

config:
      WebDriver:
          url: http://mylocalenv.mine

xdebug远程为on

xdebug.remote_enable => On => On
xdebug.remote_handler => dbgp => dbgp
xdebug.remote_host => localhost => localhost
xdebug.remote_log => /logs/xdebug.log => /logs/xdebug.log
xdebug.remote_mode => req => req
xdebug.remote_port => 9000 => 9000

我为chmod做过output

这是我得到的报告 enter image description here

我有什么想念吗?

0 个答案:

没有答案