Skip to content

Commit 540a3b5

Browse files
committed
Removed version note.
1 parent 705236c commit 540a3b5

23 files changed

+22
-41
lines changed

docs/commands/codeception.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
# CLI commands: vendor/bin/codecept
22

3-
<span style="text-align: right">_This topic was updated due to the 2.3.13 MFTF release._</span>
43

54
<span class="bs-callout bs-callout-warning">
65
We do not recommend using Codeception commands directly as they can break the MFTF basic workflow.

docs/commands/mftf.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ The command that encodes this complex configuration:
169169
vendor/bin/mftf generate:tests --tests "{\r\n\"tests\":[\r\n\"general_test1\",\r\n\"general_test2\",\r\n\"general_test3\"\r\n],\r\n\"suites\":{\r\n\"sample\":[\r\n\"suite_test1\"\r\n],\r\n\"sample2\":null\r\n}\r\n}"
170170
```
171171

172-
Note: The strings must be escaped and surrounded in quotes.
172+
Note that the strings must be escaped and surrounded in quotes.
173173

174174
### `generate:suite`
175175

docs/configuration.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
# Configuration
22

3-
<span style="text-align: right">_This topic was updated due to the 2.3.13 MFTF release._</span>
4-
53
The `*.env` file provides additional configuration for the Magento Functional Testing Framework (MFTF).
64
To run the MFTF on your Magento testing instance, specify the basic configuration values.
75
Advanced users can create custom configurations based on requirements and environment.

docs/data.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,9 @@ In this example:
6363
* `email` is a data key of the entity.
6464
The corresponding value will be assigned to `userInput` as a result.
6565

66-
Note: As of MFTF 2.3.6, you no longer need to differentiate between scopes (a test, a hook, or a suite) for persisted data when referencing it in tests.
66+
<div class="bs-callout bs-callout-info">
67+
As of MFTF 2.3.6, you no longer need to differentiate between scopes (a test, a hook, or a suite) for persisted data when referencing it in tests.
68+
</div>
6769

6870
The MFTF now stores the persisted data and attempts to retrieve it using the combination of `stepKey` and the scope of where it has been called.
6971
The current scope is preferred, then widening to _test > hook > suite_ or _hook > test > suite_.

docs/extending.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
# Extending
22

3-
<span style="text-align: right">_This topic was updated due to the 2.3.13 MFTF release._</span>
4-
53
There are cases when you need to create many tests that are very similar to each other.
64
For example, only one or two parameters (for example, URL) might vary between tests.
75
To avoid copy-pasting and to save some time the Magento Functional Testing Framework (MFTF) enables you to extend test components such as [test], [data], and [action group].

docs/getting-started.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
# Getting started
22

3-
<span style="text-align: right">_This topic was updated due to the 2.3.13 MFTF release._</span>
4-
53
<div class="bs-callout bs-callout-info">
64
<a href="https://devdocs.magento.com/mftf/2.3/introduction.html#find-version">Find out your version</a> of the MFTF.
75

docs/introduction.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
# Introduction to the Magento Functional Testing Framework version 2.3
22

3-
<span style="text-align: right">_This topic was updated due to the 2.3.13 MFTF release._</span>
4-
53
<a href="https://devdocs.magento.com/mftf/2.3/introduction.html#find-version">Find out your version</a> of the MFTF.
64

75
The latest Magento 2.3 release supports MFTF 2.3.13.
@@ -134,4 +132,4 @@ Follow the [MFTF project] and [contribute on Github].
134132
<!-- Link definitions -->
135133
[contribute on Github]: https://github.com/magento/magento2-functional-testing-framework/blob/master/.github/CONTRIBUTING.md
136134
[Functional Testing Framework]: https://devdocs.magento.com/guides/v2.3/mtf/mtf_introduction.html
137-
[MFTF project]: https://github.com/magento/magento2-functional-testing-framework
135+
[MFTF project]: https://github.com/magento/magento2-functional-testing-framework

docs/merging.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
# Merging
22

3-
<span style="text-align: right">_This topic was updated due to the 2.3.13 MFTF release._</span>
4-
53
The MFTF allows you to merge test components defined in XML files, such as:
64

75
- [`<tests>`][]

docs/metadata.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
# Metadata
22

3-
<span style="text-align: right">_This topic was updated due to the 2.3.13 MFTF release._</span>
4-
53
In this topic we talk about handling entities that you need in your tests (such as categories, products, wish lists, and similar) using the MFTF.
64
Using data handling actions like [`createData`], [`deleteData`], [`updateData`], and [`getData`], you are able to create, delete, update, and read entities for your tests.
75
The framework enables you to send HTTP requests with these statically defined data entities:
@@ -183,8 +181,10 @@ The following is encoded in `<operation>`:
183181
The parameter that declares a body of the request is _catalogCategoryRepositoryV1SavePostBody_.
184182
Using the [Reference], we can trace how the JSON request was converted into XML representation.
185183

186-
Note: Comments in the example below are used to demonstrate relation between JSON request and MFTF metadata in XML.
184+
<div class="bs-callout bs-callout-info">
185+
Comments in the example below are used to demonstrate relation between JSON request and MFTF metadata in XML.
187186
JSON does not support comments.
187+
</div>
188188

189189
Model schema for _catalogCategoryRepositoryV1SavePostBody_ with XML representation of _Catalog/Metadata/category-meta.xml_ in comments:
190190

docs/page.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
# Page structure
22

3-
<span style="text-align: right">_This topic was updated due to the 2.3.13 MFTF release._</span>
4-
53
The MFTF uses a modified concept of [PageObjects], which models the testing areas of your page as objects within the code.
64
This reduces occurrences of duplicated code and enables you to fix things quickly, in one place, when things change.
75
You define the contents of a page, for reference in a [`<test>`], at both the [`<page>`] and [`<section>`] level.

0 commit comments

Comments
 (0)