Advertisement
stronk7

Untitled

Apr 25th, 2020
220
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.03 KB | None | 0 0
  1. $ cat ../behat_configurations.php
  2. <?php /// Behat Configuration File
  3.  
  4. global $CFG;
  5.  
  6. $CFG->behat_config = array(
  7.  
  8. // with Chrome browser (js) and Goutte headless browser (nonjs).
  9. // Behat 3.x version.
  10. 'seleniumchrome' => array(
  11. 'extensions' => array(
  12. 'Behat\MinkExtension' => array(
  13. 'default_session' => 'goutte',
  14. 'goutte' => null,
  15. 'javascript_session' => 'selenium2',
  16. 'selenium2' => array(
  17. 'browser' => 'chrome',
  18. 'capabilities' => array(
  19. 'extra_capabilities' => array(
  20. 'chromeOptions' => array(
  21. 'args' => array(
  22. '--disable-infobars',
  23. )
  24. )
  25. )
  26. )
  27. )
  28. )
  29. )
  30. ),
  31. );
  32.  
  33. stronk7@stronk7lenovo MINGW64 ~/git_moodle/integration (master)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement