Настройка профиля firefox в codeception 2

Не получается запустить FF с заданным профилем. Вот мой конфиг

class_name: AcceptanceTester
modules:
    enabled:
        - WebDriver
        - \Helper\Acceptance
    config:
        WebDriver:
            url: 'http://localhost/yii.com/web'
            browser: 'firefox'
            window_size: 1024x768
            wait: 10
            capabilities:
                unexpectedAlertBehaviour: 'accept'
                firefox_profile: 'C:/Users/uginber/AppData/Roaming/Mozilla/Firefox/Profiles/w6um2h6q.default' 

В консоли выдаёт ошибку

Warning: file_get_contents(/Users/uginber/AppData/Roaming/Mozilla/Firefox/Profiles/w6um2h6q.default): failed to open stream: Permission denied in phar://C:/xampp/htdocs/codeception2/codecept.phar/src/Codeception/Module/WebDriver.php on line 201

Codeception пути в стиле UNIX поэтому:
firefox_profile: ‘C:/Users/uginber/AppData/Roaming/Mozilla/Firefox/Profiles/w6um2h6q.default’
превращается в:

firefox_profile: 'C:\\Users\\uginber\\AppData\\Roaming\\Mozilla\\Firefox\\Profiles\\w6um2h6q.default'

Т.е. не правильно указываю путь к профилю?