Skip to content

Commit 2a0b811

Browse files
authored
Merge pull request #366 from magento-devdocs/db_selenium_version
MAGEDOC-3866 Update Selenium version
2 parents 1dd7cd2 + e4448fd commit 2a0b811

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed

docs/getting-started.md

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Make sure that you have the following software installed and configured on your
1313
- [PHP version supported by the Magento instance under test][php]
1414
- [Composer 1.3 or later][composer]
1515
- [Java 1.8 or later][java]
16-
- [Selenium Server Standalone 3.6 or later][selenium server] and [ChromeDriver 2.33 or later][chrome driver] or other webdriver in the same directory
16+
- [Selenium Server Standalone 3.1 or later][selenium server] and [ChromeDriver 2.33 or later][chrome driver] or other webdriver in the same directory
1717

1818
<div class="bs-callout bs-callout-tip" markdown="1">
1919
[PhpStorm] supports [Codeception test execution][], which is helpful when debugging.
@@ -63,7 +63,7 @@ A Selenium web driver cannot enter data to fields with WYSIWYG.
6363
To disable the WYSIWYG and enable the web driver to process these fields as simple text areas:
6464

6565
1. Log in to the Magento Admin as an administrator.
66-
2. Navigate to **Stores \> Configuration \> General \> Content Management**.
66+
2. Navigate to **Stores** > Settings > **Configuration** > **General** > **Content Management**.
6767
3. In the WYSIWYG Options section set the **Enable WYSIWYG Editor** option to **Disabled Completely**.
6868
4. Click **Save Config**.
6969

@@ -75,16 +75,16 @@ When you want to test the WYSIWYG functionality, re-enable WYSIWYG in your test
7575

7676
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:
7777

78-
1. Navigate to **Stores \> Configuration \> Advanced \> Admin \> Security**.
78+
1. Navigate to **Stores** > Settings > **Configuration** > **Advanced** > **Admin** > **Security**.
7979
2. Set **Admin Account Sharing** to **Yes**.
8080
3. Set **Add Secret Key to URLs** to **No**.
8181
4. Click **Save Config**.
8282

8383
### Nginx settings {#nginx-settings}
8484

85-
If Nginx Web server is used on your development environment then **Use Web Server Rewrites** setting in **Stores \> Configuration \> Web \> Search Engine Optimization** must be set to **Yes**.
85+
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**.
8686

87-
To be able to run Magento command line commands in tests add the following location block to Nginx configuration file:
87+
To be able to run Magento command line commands in tests add the following location block to Nginx configuration file:
8888

8989
```conf
9090
location ~* ^/dev/tests/acceptance/utils($|/) {
@@ -97,6 +97,7 @@ location ~* ^/dev/tests/acceptance/utils($|/) {
9797
}
9898
}
9999
```
100+
100101
## Set up an embedded MFTF {#setup-framework}
101102

102103
This is a default setup that you would need to start using the MFTF to cover your Magento project with functional testing.
@@ -129,7 +130,7 @@ If the file does not exist, add the `--force` option to create it:
129130
vendor/bin/mftf generate:urn-catalog --force .idea/
130131
```
131132

132-
See [`generate:urn-catalog`][] for more details.'
133+
See [`generate:urn-catalog`][] for more details.
133134

134135
<div class="bs-callout bs-callout-tip" markdown="1">
135136
You can simplify command entry by adding the absolute path to the `vendor/bin` directory path to your PATH environment variable.
@@ -176,7 +177,7 @@ cp dev/tests/acceptance/.htaccess.sample dev/tests/acceptance/.htaccess
176177

177178
To run tests, you need a running Selenium server and [`mftf`][] commands.
178179

179-
#### Run the Selenium server {#selenium-server}
180+
#### Run the Selenium server {#selenium-server}
180181

181182
Run the Selenium server in terminal.
182183
For example, the following commands run the Selenium server for Google Chrome:
@@ -215,7 +216,7 @@ vendor/bin/mftf run:test AdminLoginTest --remove
215216

216217
See more commands in [`mftf`][].
217218

218-
### Step 5. Generate reports {#reports}
219+
### Step 5. Generate reports {#reports}
219220

220221
During testing, the MFTF generates test reports in CLI.
221222
You can generate visual representations of the report data using [Allure Framework][].

0 commit comments

Comments
 (0)