# 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 coverage: remote: true modules: enabled: - AcceptanceHelper - WebDriver - Asserts - MailCatcherGuzzle5 - Db config: PhpBrowser: url: 'http://127.0.0.1:8085/' WebDriver: browser: chrome url: 'https://127.0.0.1:8085/' host: '127.0.0.1' port: 9515 window_size: 1680x3000 wait: 10 capabilities: unexpectedAlertBehaviour: 'accept' elementScrollBehavior: 1 chromeOptions: args: ["--allow-insecure-localhost", "--no-sandbox", "--disable-dev-shm-usage", "--disable-gpu"] MailCatcherGuzzle5: url: 'http://127.0.0.1' port: '1080' Db: dsn: %DB%:host=%DBSERVER%;dbname=%DBNAME% user: %DBUSER% password: %DBPASS% env: chrome: modules: config: WebDriver: browser: chrome capabilities: chromeOptions: prefs: download.default_directory: '/tmp' http: modules: config: WebDriver: url: 'http://127.0.0.1:8085/'