hi,I trouble with the same issue , can you give me more details about the yml.
i try to config like below, but it does not work.
class_name: FunctionalTester
modules:
enabled:
- Yii2
- PhpBrowser
- WebDriver
- Db
- Asserts
- REST
# - FunctionalHelper
config:
Yii2:
configFile: 'codeception/config/functional.php'
PhpBrowser:
url : 'http://forms.localhost.com'
REST:
url : 'http://forms.localhost.com'
WebDriver:
url : 'http://forms.localhost.com'
browser: firefox
host: localhost
window_size: maximize
Db:
dsn: 'mysql:host=192.168.65.10;dbname=ucx'
user: root
password: root
# Selenium server
- "java -jar /tmp/selenium/selenium-server-standalone-2.44.0.jar -Dwebdriver.firefox.bin=/usr/lib/firefox/firefox-bin 1>/dev/null 2>&1 &"
coverage:
it warn me like below:
You cannot define a sequence item when in a mapping
how can i run the command.
Thx.