...
- Do a normal install on the machine you wish to test on (this is so a valid configuration file is present)
Create a behat.xml file in your config directory. It should contain the following settings:
Code Block language xml title behat.xml <?xml version="1.0" encoding="UTF-8"?> <rogo> <website>http://localhost:8000/</website> <db_database>behat_database_schema_name</db_database> <db_user>username</db_user> <db_password>password</db_password> <data>path_to_behat_user_data</data> <faildump>path_for_screenshots_of_failures</faildump> </rogo>
- Run the following script:
testing/behat/cli/init.php
- Download selenium (V3.x is supported) from http://www.seleniumhq.org/download/
- Download ChromeDriver from https://sites.google.com/a/chromium.org/chromedriver/
...