Getting started
This topic was updated after 2.0.2 MFTF release.
Prepare environment
Make sure that you’ve installed and set up the following software:
- PHP version supported by Magento instance under test
- Composer v1.3.x+
- Java v1.8.x+
- Selenium Server Standalone v3.6.0+
- ChromeDriver v2.33+
Recommendations
We recommend using PHPStorm 2017 for your integrated development environment (IDE). They recently added support for Codeception Test execution, which is helpful when debugging.
Prepare Magento
Configure the following settings in Magento as described below.
WYSIWYG settings
A Selenium web driver cannot enter data to fields with WYSIWYG.
To disable the WYSIWYG and enable the web driver to process these fields as simple text areas:
- Log in to the Magento Admin as an administrator.
- Navigate to Stores > Configuration > General > Content Management.
- In the WYSIWYG Options section set the Enable WYSIWYG Editor option to Disabled Completely.
- Click Save Config.
Security settings
To enable the Admin Account Sharing setting, to avoid unpredictable logout during a testing session, and disable the Add Secret Key in URLs setting, to open pages using direct URLs:
- Navigate to Stores > Configuration > Advanced > Admin > Security.
- Set Admin Account Sharing to Yes.
- Set Add Secret Key to URLs to No.
- Click Save Config.
Set up the framework
Follow these steps in a command line interface to set up the MFTF on your system.
Step 1. Clone the magento2
source code repository
git clone https://github.com/magento/magento2.git
or
git clone git@github.com:magento/magento2.git
Step 2. Install dependencies
cd magento2/dev/tests/acceptance
composer install
Step 3. Build the project
In magento2/dev/tests/acceptance, run the following command:
vendor/bin/robo build:project
To avoid typing vendor/bin
every time, add your <absolute path to acceptance dir>/vendor/bin
value to PATH
.
When added, you should be able to run the robo
, codecept
, and phpunit
commands.
Step 4. Edit environment settings
In the magento2/dev/tests/acceptance directory, edit the .env
file to match your system. Use the following parameters, which are required to launch tests.
-
MAGENTO_BASE_URL
must contain a domain name of the Magento instance that will be tested. Example:MAGENTO_BASE_URL=http://magento.test
-
MAGENTO_BACKEND_NAME
must contain a relative pass of the Admin area. Example:MAGENTO_BACKEND_NAME=admin
-
MAGENTO_ADMIN_USERNAME
must contain the user name required for authorization in the Admin area. Example:MAGENTO_ADMIN_USERNAME=admin
-
MAGENTO_ADMIN_PASSWORD
must contain the user password required for authorization in the Admin area. Example:MAGENTO_ADMIN_PASSWORD=123123q
The following self-descriptive variables have included default values.
SELENIUM_HOST=127.0.0.1
SELENIUM_PORT=4444
SELENIUM_PROTOCOL=http
SELENIUM_PATH=/wd/hub
Only change or specify SELENIUM_*
values if you are not running Selenium locally, or if you have changed your Selenium Server configuration.
Your environment settings form the path to your running Selenium Server. Example:
http://127.0.0.1:4444/wd/hub
Step 5. Make command.php
visible in the Magento testing environment
In your Magento installation, navigate to the magento2/dev/tests/acceptance directory and run the following command to allow MFTF to send Magento CLI commands to your Magento instance.
cp .htaccess.sample .htaccess
If you do not have access to your Magento installation and cannot complete the above steps you will not be able to run tests using Magento CLI commands.
Step 6. Generate existing tests
In the magento2/dev/tests/acceptance
directory, run the following command to generate tests as PHP classes from XML files:
vendor/bin/robo generate:tests
Step 7. Run tests
To run tests you need a running Selenium server and a codecept
or robo
with required parameters.
Run the Selenium server
-
Download a Selenium web driver for your web browser into the same directory that contains the Selenium server.
-
Add the directory with the web driver to
PATH
. -
Run the Selenium server in terminal (or other command line interface):
java -jar <path_to_selenium_directory>/selenium-server-standalone-<version>.jar
Run all tests
vendor/bin/codecept run
See more commands in robo
and codecept
.
Step 8. Generate reports
Install Allure, a tool that generates testing reports in HTML. Testing reports are generated in a CLI during testing.
If you want to see the reports in a GUI, run:
vendor/bin/robo allure2:report
See also Allure robo
commands and Report structure.