functional.suite.dist.yml 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. # Copyright © Magento, Inc. All rights reserved.
  2. # See COPYING.txt for license details.
  3. # Codeception Test Suite Configuration
  4. #
  5. # Suite for acceptance tests.
  6. # Perform tests in browser using the WebDriver or PhpBrowser.
  7. # If you need both WebDriver and PHPBrowser tests - create a separate suite.
  8. class_name: AcceptanceTester
  9. namespace: Magento\FunctionalTestingFramework
  10. modules:
  11. enabled:
  12. - \Magento\FunctionalTestingFramework\Module\MagentoWebDriver
  13. - \Magento\FunctionalTestingFramework\Helper\Acceptance
  14. - \Magento\FunctionalTestingFramework\Helper\MagentoFakerData
  15. - \Magento\FunctionalTestingFramework\Module\MagentoSequence
  16. - \Magento\FunctionalTestingFramework\Module\MagentoAssert
  17. - Asserts
  18. config:
  19. \Magento\FunctionalTestingFramework\Module\MagentoWebDriver:
  20. url: "%MAGENTO_BASE_URL%"
  21. backend_url: "%MAGENTO_BACKEND_BASE_URL%"
  22. backend_name: "%MAGENTO_BACKEND_NAME%"
  23. browser: 'chrome'
  24. restart: true
  25. window_size: 1280x1024
  26. username: "%MAGENTO_ADMIN_USERNAME%"
  27. password: "%MAGENTO_ADMIN_PASSWORD%"
  28. pageload_timeout: 30
  29. host: %SELENIUM_HOST%
  30. port: %SELENIUM_PORT%
  31. protocol: %SELENIUM_PROTOCOL%
  32. path: %SELENIUM_PATH%
  33. capabilities:
  34. chromeOptions:
  35. args: ["--window-size=1280,1024", "--disable-extensions", "--enable-automation", "--disable-gpu", "--enable-Passthrough"]