acceptance.suite.yml 852 B

123456789101112131415161718192021222324
  1. # Codeception Test Suite Configuration
  2. # suite for acceptance tests.
  3. # perform tests in browser using the Selenium-like tools.
  4. # powered by Mink (http://mink.behat.org).
  5. # (tip: that's what your customer will see).
  6. # (tip: test your ajax and javascript by one of Mink drivers).
  7. # RUN `build` COMMAND AFTER ADDING/REMOVING MODULES.
  8. class_name: WebGuy
  9. modules:
  10. enabled:
  11. - WebHelper
  12. - PhpBrowser
  13. # you can use WebDriver instead of PhpBrowser to test javascript and ajax.
  14. # This will require you to install selenium. See http://codeception.com/docs/04-AcceptanceTests#Selenium
  15. # - WebDriver
  16. config:
  17. PhpBrowser:
  18. url: 'http://localhost/basic-app/web/index-test-acceptance.php'
  19. # WebDriver:
  20. # url: 'http://localhost/basic-app/web/index-test-acceptance.php'
  21. # browser: firefox