Skip to content

Commit cb28721

Browse files
authored
Merge pull request #562 from ajithkumar-maragathavel/mftf-getting-started
MFTF Getting Started page improvements
2 parents 8b33258 + f60c044 commit cb28721

File tree

1 file changed

+18
-6
lines changed

1 file changed

+18
-6
lines changed

docs/getting-started.md

Lines changed: 18 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22

33
<div class="bs-callout bs-callout-info" markdown="1">
44
[Find your MFTF version][] of the MFTF.
5-
The latest Magento 2.3.x release supports MFTF 2.4.5.
5+
The latest Magento 2.3.x release supports MFTF 2.5.3.
66
The latest Magento 2.2.x release supports MFTF 2.4.5.
77
</div>
88

9-
## Prepare environment {#prepare-environment}
9+
## Prepare environment {#prepare-environment}
1010

1111
Make sure that you have the following software installed and configured on your development environment:
1212

@@ -53,11 +53,11 @@ Install the Magento application.
5353
composer install
5454
```
5555

56-
## Prepare Magento {#prepare-magento}
56+
## Prepare Magento {#prepare-magento}
5757

5858
Configure the following settings in Magento as described below.
5959

60-
### WYSIWYG settings {#wysiwyg-settings}
60+
### WYSIWYG settings {#wysiwyg-settings}
6161

6262
A Selenium web driver cannot enter data to fields with WYSIWYG.
6363

@@ -74,6 +74,12 @@ or via command line:
7474
bin/magento config:set cms/wysiwyg/enabled disabled
7575
```
7676

77+
Clean the cache after changing the configuration values:
78+
79+
```bash
80+
bin/magento cache:clean config full_page
81+
```
82+
7783
<div class="bs-callout bs-callout-tip">
7884
When you want to test the WYSIWYG functionality, re-enable WYSIWYG in your test suite.
7985
</div>
@@ -97,15 +103,21 @@ bin/magento config:set admin/security/admin_account_sharing 1
97103
bin/magento config:set admin/security/use_form_key 0
98104
```
99105

106+
Clean the cache after changing the configuration values:
107+
108+
```bash
109+
bin/magento cache:clean config full_page
110+
```
111+
100112
### Webserver configuration {#web-server-configuration}
101113

102114
The MFTF does not support executing CLI commands if your web server points to `<MAGE_ROOT_DIR>/pub` directory as recommended in the [Installation Guide][Installation Guide docroot]. For the MFTF to execute the CLI commands, the web server must point to the Magento root directory.
103115

104116
### Nginx settings {#nginx-settings}
105117

106-
If Nginx Web server is used on your development environment then **Use Web Server Rewrites** setting in **Stores** > Settings > **Configuration** > **Web** > **Search Engine Optimization** must be set to **Yes**.
118+
If the Nginx Web server is used on your development environment, then **Use Web Server Rewrites** setting in **Stores** > Settings > **Configuration** > **General** > **Web** > **Search Engine Optimization** must be set to **Yes**.
107119

108-
To be able to run Magento command line commands in tests add the following location block to Nginx configuration file:
120+
To be able to run Magento command line commands in tests, add the following location block to the Nginx configuration file in the Magento root directory:
109121

110122
```conf
111123
location ~* ^/dev/tests/acceptance/utils($|/) {

0 commit comments

Comments
 (0)