From 766efcc8fb4d75bb9ffb349a8259a21d551bd197 Mon Sep 17 00:00:00 2001 From: Donald Booth Date: Thu, 21 Mar 2019 13:51:12 -0500 Subject: [PATCH 1/4] Fixing links and other changes per review. --- README.md | 2 +- docs/commands/codeception.md | 12 ++++++------ docs/commands/mftf.md | 4 ++-- docs/configuration.md | 6 +++--- docs/credentials.md | 8 ++++---- docs/data.md | 4 ++-- docs/extending.md | 8 ++++---- docs/getting-started.md | 2 +- docs/introduction.md | 3 --- docs/merge_points/introduction.md | 18 +++++++++--------- docs/merge_points/merge-action-groups.md | 5 ++++- docs/merging.md | 14 +++++++------- docs/metadata.md | 16 ++++++++-------- docs/page.md | 8 ++++---- docs/reporting.md | 10 +++++----- docs/section/locator-functions.md | 4 ++-- docs/section/parameterized-selectors.md | 2 +- docs/suite.md | 8 ++++---- docs/test.md | 14 +++++++------- docs/test/action-groups.md | 6 +++--- docs/test/actions.md | 16 ++++++++-------- docs/test/annotations.md | 4 ++-- docs/test/assertions.md | 6 +++--- docs/troubleshooting.md | 4 ++-- docs/update.md | 6 +++--- 25 files changed, 95 insertions(+), 95 deletions(-) diff --git a/README.md b/README.md index 7c3d647a4..b95a7afc4 100755 --- a/README.md +++ b/README.md @@ -69,7 +69,7 @@ Each Magento source file included in this distribution is licensed under AGPL 3. See the license [here][] or contact [license@magentocommerce.com][] for a copy. -[Getting Started]: https://devdocs.magento.com/mftf/getting-started.html +[Getting Started]: docs/getting-started.md [Contribution Guidelines]: .github/CONTRIBUTING.html [DevDocs Contributing]: https://github.com/magento/devdocs/blob/master/.github/CONTRIBUTING.md [security@magento.com]: mailto:security@magento.com diff --git a/docs/commands/codeception.md b/docs/commands/codeception.md index baadf1110..dd0dc840b 100644 --- a/docs/commands/codeception.md +++ b/docs/commands/codeception.md @@ -12,19 +12,19 @@ To run the Codeception testing framework commands directly, change your director Run all the generated tests: ```bash -../../../vendor/bin/codecept run functional -c dev/tests/acceptance/codeception.yml +vendor/bin/codecept run functional -c dev/tests/acceptance/codeception.yml ``` Run all tests without the `` [annotation][]: ```bash -../../../vendor/bin/codecept run functional --skip-group skip -c dev/tests/acceptance/codeception.yml +vendor/bin/codecept run functional --skip-group skip -c dev/tests/acceptance/codeception.yml ``` Run all tests with the `` [annotation][] but with no ``: ```bash -../../../vendor/bin/codecept run functional --group example --skip-group skip -c dev/tests/acceptance/codeception.yml +vendor/bin/codecept run functional --group example --skip-group skip -c dev/tests/acceptance/codeception.yml ``` ## `codecept run` @@ -32,7 +32,7 @@ Run all tests with the `` [annotation][] but with no ` @@ -81,5 +81,5 @@ Options: -[mftf tool]: mftf.html -[annotation]: ../test/annotations.html \ No newline at end of file +[mftf tool]: mftf.md +[annotation]: ../test/annotations.md \ No newline at end of file diff --git a/docs/commands/mftf.md b/docs/commands/mftf.md index 0516f2d0a..e418f7970 100644 --- a/docs/commands/mftf.md +++ b/docs/commands/mftf.md @@ -384,11 +384,11 @@ vendor/bin/mftf upgrade:tests /Users/user/magento2/app/code/Magento/Catalog/Test -[configuration]: ../configuration.html +[configuration]: ../configuration.md [Reference]: #reference [build]: #buildproject [setup]: #setupenv -[Reporting]: ../reporting.html +[Reporting]: ../reporting.md diff --git a/docs/configuration.md b/docs/configuration.md index 6e5a519d1..9d87e0735 100644 --- a/docs/configuration.md +++ b/docs/configuration.md @@ -160,7 +160,7 @@ Example: MAGENTO_RESTAPI_SERVER_PORT=5000 ``` -### *_BP +### \*_BP Settings to override base paths for the framework. You can use it when the MFTF is applied as a separate tool. @@ -254,6 +254,6 @@ BROWSER=firefox [`MAGENTO_CLI_COMMAND_PATH`]: #magento_cli_command_path -[generateDate]: test/actions.html#generatedate -[mftf]: commands/mftf.html +[generateDate]: test/actions.md#generatedate +[mftf]: commands/mftf.md [timezones]: http://php.net/manual/en/timezones.php \ No newline at end of file diff --git a/docs/credentials.md b/docs/credentials.md index 8939e0b4e..7afa9b805 100644 --- a/docs/credentials.md +++ b/docs/credentials.md @@ -94,7 +94,7 @@ The decrypted values are only available in the `.credentials` file. The MFTF tests delivered with Magento application do not use credentials and do not cover external services, because of sensitivity of the data. -[`fillField`]: test/actions.html#fillfield -[data]: data.html -[initial setup]: getting-started.html -[test reports]: reporting.html +[`fillField`]: test/actions.md#fillfield +[data]: data.md +[initial setup]: getting-started.md +[test reports]: reporting.md diff --git a/docs/data.md b/docs/data.md index cc8c32c26..c5845c1d4 100644 --- a/docs/data.md +++ b/docs/data.md @@ -74,7 +74,7 @@ This emphasizes the practice for the `stepKey` of `createData` to be descriptive ## Use data returned by test actions -A test can also reference data that was returned as a result of [test actions](./test/actions.html#actions-returning-a-variable), like the action ` -[test]: ./test.html -[data]: ./data.html -[action group]: ./test/action-groups.html -[actions]: ./test/actions.html \ No newline at end of file +[test]: ./test.md +[data]: ./data.md +[action group]: ./test/action-groups.md +[actions]: ./test/actions.md \ No newline at end of file diff --git a/docs/getting-started.md b/docs/getting-started.md index a005ac43b..3119889a0 100644 --- a/docs/getting-started.md +++ b/docs/getting-started.md @@ -183,7 +183,7 @@ cd dev/tests/acceptance ``` ```bash -../../../vendor/bin/codecept run functional +vendor/bin/codecept run functional -c dev/tests/acceptance/codeception.yml ``` See more commands in [`codecept`][]. diff --git a/docs/introduction.md b/docs/introduction.md index 66e52bb76..1c7bfd329 100644 --- a/docs/introduction.md +++ b/docs/introduction.md @@ -2,9 +2,6 @@ [Find your MFTF version][] of the MFTF. -The latest Magento 2.3 release supports MFTF 2.3.13. -The latest Magento 2.2 release supports MFTF 2.3.8. - The Magento Functional Testing Framework (MFTF) aims to replace the [Functional Testing Framework] in future releases. MFTF improves: diff --git a/docs/merge_points/introduction.md b/docs/merge_points/introduction.md index 891f6e3fe..af03dade6 100644 --- a/docs/merge_points/introduction.md +++ b/docs/merge_points/introduction.md @@ -28,12 +28,12 @@ Consult [when to use Extends][] to use extends when deciding whether to merge or - [Extend Tests][] -[when to use Extends]: https://devdocs.magento.com/mftf/docs/best-practices.html#when-to-use-extends -[Merge Action Groups]: https://devdocs.magento.com/mftf/docs/merge_points/merge-action-groups.html -[Merge Data]: https://devdocs.magento.com/mftf/docs/merge_points/merge-data.html -[Merge Pages]: https://devdocs.magento.com/mftf/docs/merge_points/merge-pages.html -[Merge Sections]: https://devdocs.magento.com/mftf/docs/merge_points/merge-sections.html -[Merge Tests]: https://devdocs.magento.com/mftf/docs/merge_points/merge-tests.html -[Extend Action Groups]: https://devdocs.magento.com/mftf/docs/merge_points/extend-action-groups.html -[Extend Data]: https://devdocs.magento.com/mftf/docs/merge_points/extend-data.html -[Extend Tests]: https://devdocs.magento.com/mftf/docs/merge_points/extend-tests.html \ No newline at end of file +[when to use Extends]: ../best-practices.md#when-to-use-extends +[Merge Action Groups]: merge-action-groups.md +[Merge Data]: merge-data.md +[Merge Pages]: merge-pages.md +[Merge Sections]: merge-sections.md +[Merge Tests]: merge-tests.md +[Extend Action Groups]: extend-action-groups.md +[Extend Data]: extend-data.md +[Extend Tests]: extend-tests.md \ No newline at end of file diff --git a/docs/merge_points/merge-action-groups.md b/docs/merge_points/merge-action-groups.md index 0485e7287..6d125ed9f 100644 --- a/docs/merge_points/merge-action-groups.md +++ b/docs/merge_points/merge-action-groups.md @@ -7,6 +7,8 @@ In this example we add a `` command to check the checkbox that our extens ## Starting test + + ```xml @@ -71,4 +73,5 @@ In this example we add a `` command to check the checkbox that our extens -``` \ No newline at end of file +``` + \ No newline at end of file diff --git a/docs/merging.md b/docs/merging.md index 8a892b74a..32ea966c3 100644 --- a/docs/merging.md +++ b/docs/merging.md @@ -562,10 +562,10 @@ The `_defaultSample` results corresponds to: -[`codecept`]: ./commands/codeception.html -[`mftf`]: ./commands/mftf.html -[``]: ./data.html -[elements]: ./section.html#element-tag -[``]: ./page.html -[``]: ./section.html -[``]: ./test.html +[`codecept`]: ./commands/codeception.md +[`mftf`]: ./commands/mftf.md +[``]: ./data.md +[elements]: ./section.md#element-tag +[``]: ./page.md +[``]: ./section.md +[``]: ./test.md diff --git a/docs/metadata.md b/docs/metadata.md index edec18fcb..87f2da7e0 100644 --- a/docs/metadata.md +++ b/docs/metadata.md @@ -554,7 +554,7 @@ Example: -[actions]: test/actions.html +[actions]: test/actions.md [api reference]: https://devdocs.magento.com/guides/v2.3/get-started/bk-get-started-api.html [application/x-www-form-urlencoded]: https://www.w3.org/TR/html401/interact/forms.html#h-17.13.4.1 {:target="_blank"} @@ -562,22 +562,22 @@ Example: [catalogCategoryRepositoryV1SavePostBody]: #catalogCategoryRepositoryV1SavePostBody [contentType]: #contentType-tag [Create a new category]: #create-object-as-adminOauth -[createData]: test/actions.html#createdata +[createData]: test/actions.md#createdata [delete a category by its ID]: #delete-object-as-adminOauth -[deleteData]: test/actions.html#deletedata -[entity]: data.html#entity-tag +[deleteData]: test/actions.md#deletedata +[entity]: data.md#entity-tag [get information about a category by its ID]: #get-object-as-adminOauth -[getData]: test/actions.html#getdata +[getData]: test/actions.md#getdata [HTML forms]: https://www.w3.org/TR/html401/interact/forms.html -{:target="_blank"} +{:target="\_blank"} [oauth]: https://devdocs.magento.com/guides/v2.3/get-started/authentication/gs-authentication-oauth.html -{:target="_blank"} +{:target="\_blank"} [operation]: #operation-tag [reference]: #reference [rest request]: #handling-with-api [html form]: #using-html-forms [update category data by its ID]: #update-object-as-adminOauth -[updateData]: test/actions.html#updatedata +[updateData]: test/actions.md#updatedata [rest response]: #rest-response *[CRUD]: Create Read Update Delete diff --git a/docs/page.md b/docs/page.md index aef0cdd76..52107e525 100644 --- a/docs/page.md +++ b/docs/page.md @@ -161,12 +161,12 @@ Attributes|Type|Use|Description `remove`|boolean|optional|The default value is `"false"`. Set to `"true"` to remove this element during parsing. -[``]: test/actions.html#createdata +[``]: test/actions.md#createdata [``]: #page-tag [`
`]: #section-tag -[``]: test.html -[actions]: test/actions.html +[``]: test.md +[actions]: test/actions.md [explicit page]: #explicit-page [PageObjects]: https://github.com/SeleniumHQ/selenium/wiki/PageObjects [parameterized page]: #parameterized-page -[section]: section.html +[section]: section.md diff --git a/docs/reporting.md b/docs/reporting.md index dd6fed8ee..f303945af 100644 --- a/docs/reporting.md +++ b/docs/reporting.md @@ -344,13 +344,13 @@ Refer to the [Reporting section][] for more Allure CLI details. -[`after`]: test.html#after-tag -[`run:group`]: commands/mftf.html#rungroup -[`run:test`]: commands/mftf.html#runtest +[`after`]: test.md#after-tag +[`run:group`]: commands/mftf.md#rungroup +[`run:test`]: commands/mftf.md#runtest [Allure Framework]: https://docs.qameta.io/allure/ [Allure Test Report]: http://allure.qatools.ru/ -[codecept]: commands/codeception.html +[codecept]: commands/codeception.md [codeception]: https://codeception.com/docs/reference/Commands -[mftf]: commands/mftf.html +[mftf]: commands/mftf.md [report an issue]: https://github.com/magento/magento2-functional-testing-framework/blob/master/.github/CONTRIBUTING.md#report-an-issue [Reporting section]: https://docs.qameta.io/allure/#_reporting diff --git a/docs/section/locator-functions.md b/docs/section/locator-functions.md index 3d296bd93..d52c2fc72 100644 --- a/docs/section/locator-functions.md +++ b/docs/section/locator-functions.md @@ -42,5 +42,5 @@ Given the above element definitions, you call the elements in a test just like a [Locator functions]: http://codeception.com/docs/reference/Locator -[section]: ../section.html -[parameterized selectors]: ./parameterized-selectors.html \ No newline at end of file +[section]: ../section.md +[parameterized selectors]: ./parameterized-selectors.md \ No newline at end of file diff --git a/docs/section/parameterized-selectors.md b/docs/section/parameterized-selectors.md index de9030031..58227948f 100644 --- a/docs/section/parameterized-selectors.md +++ b/docs/section/parameterized-selectors.md @@ -152,4 +152,4 @@ Any data can be used in parameterized elements, as well as entered in test actio * `{$variable}` is a reference to data returned by a test action, like ``. -[test]: ../test.html \ No newline at end of file +[test]: ../test.md \ No newline at end of file diff --git a/docs/suite.md b/docs/suite.md index e630ae250..c8b21afbf 100644 --- a/docs/suite.md +++ b/docs/suite.md @@ -282,12 +282,12 @@ Attributes|Type|Use|Description `remove`|boolean|optional|Removing the filter during merging. -[actions]: test/actions.html -[action groups]: test/action-groups.html +[actions]: test/actions.md +[action groups]: test/action-groups.md [``]: #after-tag [``]: #before-tag -[`generate:tests`]: commands/mftf.html#generatetests -[test]: test.html +[`generate:tests`]: commands/mftf.md#generatetests +[test]: test.md [``]: #test-tag [``]: #group-tag [``]: #module-tag diff --git a/docs/test.md b/docs/test.md index c0c6eb2d1..462cd138e 100644 --- a/docs/test.md +++ b/docs/test.md @@ -136,12 +136,12 @@ See [Action groups][action group] for more information. [``]: #before-tag [``]: #test-tag [``]: #tests-tag -[action group]: ./test/action-groups.html -[actions]: ./test/actions.html +[action group]: ./test/action-groups.md +[actions]: ./test/actions.md [Allure]: https://github.com/allure-framework/ -[Annotations]: ./test/annotations.html -[assertion]: ./test/assertions.html +[Annotations]: ./test/annotations.md +[assertion]: ./test/assertions.md [Codeception]: https://codeception.com/docs/07-AdvancedUsage -[extend]: extending.html -[merging]: ./merging.html#insert-after -[suites]: ./suite.html \ No newline at end of file +[extend]: extending.md +[merging]: ./merging.md#insert-after +[suites]: ./suite.md \ No newline at end of file diff --git a/docs/test/action-groups.md b/docs/test/action-groups.md index a3adcb613..0743481f6 100644 --- a/docs/test/action-groups.md +++ b/docs/test/action-groups.md @@ -258,7 +258,7 @@ Attribute|Type|Use|Description `type`|Possible values: `string`, `entity` (default).|optional|Defines the argument data type; Defaults to `entity`. -[actions]: ./actions.html -[test]: ../test.html +[actions]: ./actions.md +[test]: ../test.md [`argument`]: #argument-tag -[created]: ../data.html#persist-data \ No newline at end of file +[created]: ../data.md#persist-data \ No newline at end of file diff --git a/docs/test/actions.md b/docs/test/actions.md index da5dcd2a9..4a6c3f48e 100644 --- a/docs/test/actions.md +++ b/docs/test/actions.md @@ -22,7 +22,7 @@ This step can be referenced within the test using `conditionalClickStep1`. The value format should met the following principles: -* Must be unique within [``](../test.html#test-tag). +* Must be unique within [``](../test.md#test-tag). * Naming should be as descriptive as possible: * Describe the action performed. * Briefly describe the purpose. @@ -166,18 +166,18 @@ The following test actions return a variable: * [grabValueFrom](#grabvaluefrom) * [executeJS](#executejs) -Learn more in [Using data returned by test actions](../data.html#use-data-returned-by-test-actions). +Learn more in [Using data returned by test actions](../data.md#use-data-returned-by-test-actions). ## Actions handling data entities -The following test actions handle data entities using [metadata](../metadata.html): +The following test actions handle data entities using [metadata](../metadata.md): * [createData](#createdata) * [deleteData](#deletedata) * [updateData](#updatedata) * [getData](#getdata) -Learn more in [Handling a REST API response](../metadata.html#rest-response). +Learn more in [Handling a REST API response](../metadata.md#rest-response). ## Reference @@ -538,7 +538,7 @@ Attribute|Type|Use|Description ### createData Creates an entity (for example, a category or product). -To create an entity, the MFTF makes a `POST` request to the Magento API according to the [data](../data.html) and [metadata](../metadata.html) of the entity to be created. +To create an entity, the MFTF makes a `POST` request to the Magento API according to the [data](../data.md) and [metadata](../metadata.md) of the entity to be created. Attribute|Type|Use|Description ---|---|---|--- @@ -617,7 +617,7 @@ Attribute|Type|Use|Description #### Examples -Delete the entity that was previously created using [`createData`](#createdata) in the scope of the [test](../test.html#test-tag). +Delete the entity that was previously created using [`createData`](#createdata) in the scope of the [test](../test.md#test-tag). 1. Create _SampleCategory_: @@ -1127,7 +1127,7 @@ Attribute|Type|Use|Description ``` -The `ProductAttributeOptionGetter` entity must be defined in the corresponding [data `*.xml`](../data.html). +The `ProductAttributeOptionGetter` entity must be defined in the corresponding [data `*.xml`](../data.md). This action can optionally contain one or more [requiredEntity](#requiredentity) child elements. @@ -1348,7 +1348,7 @@ Note that the makeScreenshot action does not automatically add the screenshot to ```
-This action does not add a screenshot to the Allure [report](../reporting.html).
+This action does not add a screenshot to the Allure [report](../reporting.md). ### maximizeWindow diff --git a/docs/test/annotations.md b/docs/test/annotations.md index d46cf221f..f30b8104e 100644 --- a/docs/test/annotations.md +++ b/docs/test/annotations.md @@ -227,7 +227,7 @@ Attribute|Type|Use [setup instructions in Allure]: https://github.com/allure-framework/allure1/wiki/Test-Case-ID [severity]: #severity [stories]: #stories -[suite]: ../suite.html -[tests]: ../test.html +[suite]: ../suite.md +[tests]: ../test.md [title]: #title [skip]: #skip diff --git a/docs/test/assertions.md b/docs/test/assertions.md index 6a933c73f..17a3d194a 100644 --- a/docs/test/assertions.md +++ b/docs/test/assertions.md @@ -1,15 +1,15 @@ # Assertions -Assertions serve to pass or fail the [test](../test.html#test-tag) if a condition is not met. These assertions will look familiar to you if you've used any other testing framework, like PHPUnit. +Assertions serve to pass or fail the [test](../test.md#test-tag) if a condition is not met. These assertions will look familiar to you if you've used any other testing framework, like PHPUnit. -All assertions contain the same [common actions attributes](./actions.html#common-attributes): `stepKey`, `before`, and `after`. +All assertions contain the same [common actions attributes](./actions.md#common-attributes): `stepKey`, `before`, and `after`. Most assertions contain a `message` attribute that specifies the text of an informational message to help you identify the cause of the failure. ## Principles -The [principles for actions](../test.html#principles) are also applicable to assertions. +The [principles for actions](../test.md#principles) are also applicable to assertions. Assertion actions have nested self-descriptive elements, `` and ``. These elements contain a result type and a value: diff --git a/docs/troubleshooting.md b/docs/troubleshooting.md index dd392827e..6ad300428 100644 --- a/docs/troubleshooting.md +++ b/docs/troubleshooting.md @@ -21,7 +21,7 @@ Use of PhantomJS is not actually supported by the MFTF. #### Solution -For headless browsing, the [Headless Chrome][]{:target="_blank"} has better compatibility with the MFTF. +For headless browsing, the [Headless Chrome][]{:target="\_blank"} has better compatibility with the MFTF. ### Chrome @@ -41,7 +41,7 @@ Chrome v62 is in the process of being rolled out, and it causes an error with Ch #### Solution -Use [ChromeDriver v2.33+][]{:target="_blank"} and [Selenium Server Standalone v3.6.0+][]{:target="_blank"} in order to execute tests in Google Chrome v62+. +Use [ChromeDriver v2.33+][]{:target="\_blank"} and [Selenium Server Standalone v3.6.0+][]{:target="\_blank"} in order to execute tests in Google Chrome v62+. ### Firefox diff --git a/docs/update.md b/docs/update.md index 3a32492f2..1a3137eb6 100644 --- a/docs/update.md +++ b/docs/update.md @@ -75,6 +75,6 @@ To update the MFTF from the previous minor version: [Changelog]: https://github.com/magento/magento2-functional-testing-framework/blob/master/CHANGELOG.md -[WYSIWYG settings]: getting-started.html#wysiwyg-settings -[Security settings]: getting-started.html#security-settings -[Find your version]: introduction.html#find-your-mftf-version \ No newline at end of file +[WYSIWYG settings]: getting-started.md#wysiwyg-settings +[Security settings]: getting-started.md#security-settings +[Find your version]: introduction.md#find-your-mftf-version \ No newline at end of file From 70bfb687b06f2e32ad23e6a78e5e8a399f669685 Mon Sep 17 00:00:00 2001 From: Donald Booth Date: Fri, 22 Mar 2019 13:17:32 -0500 Subject: [PATCH 2/4] Added {% raw %} . --- docs/merge_points/merge-sections.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/docs/merge_points/merge-sections.md b/docs/merge_points/merge-sections.md index e9f5acb55..dbd6e3828 100644 --- a/docs/merge_points/merge-sections.md +++ b/docs/merge_points/merge-sections.md @@ -6,6 +6,8 @@ In this example we add another selector to the section on the products page sect ## Starting section + + ```xml
@@ -40,4 +42,6 @@ In this example we add another selector to the section on the products page sect
-``` \ No newline at end of file +``` + + \ No newline at end of file From 380debe5cb31e770a4e1e1037208d8f8fb16574c Mon Sep 17 00:00:00 2001 From: Donald Booth Date: Fri, 22 Mar 2019 13:52:20 -0500 Subject: [PATCH 3/4] Fixed bad raw tags. --- docs/merge_points/merge-action-groups.md | 5 +++-- docs/suite.md | 4 ++-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/docs/merge_points/merge-action-groups.md b/docs/merge_points/merge-action-groups.md index 6d125ed9f..3a4f70ab1 100644 --- a/docs/merge_points/merge-action-groups.md +++ b/docs/merge_points/merge-action-groups.md @@ -7,7 +7,7 @@ In this example we add a `` command to check the checkbox that our extens ## Starting test - + ```xml @@ -74,4 +74,5 @@ In this example we add a `` command to check the checkbox that our extens ``` - \ No newline at end of file + + \ No newline at end of file diff --git a/docs/suite.md b/docs/suite.md index c8b21afbf..b24b3b9bf 100644 --- a/docs/suite.md +++ b/docs/suite.md @@ -94,7 +94,7 @@ There are several ways to generate and execute your new test in the context of a ### Enabling/disabling WYSIWYG in suite conditions - + ```xml @@ -122,7 +122,7 @@ There are several ways to generate and execute your new test in the context of a ``` - + This example declares a suite with the name `WYSIWYG`. The suite enables WYSIWYG *before* running tests. It performs the following steps: From 685bda28893bb894e5f674a53f0fc2b1f965e716 Mon Sep 17 00:00:00 2001 From: Donald Booth Date: Fri, 22 Mar 2019 15:47:55 -0500 Subject: [PATCH 4/4] raw failure is what this is. --- docs/merge_points/extend-action-groups.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/docs/merge_points/extend-action-groups.md b/docs/merge_points/extend-action-groups.md index 1f307e796..95d6cff90 100644 --- a/docs/merge_points/extend-action-groups.md +++ b/docs/merge_points/extend-action-groups.md @@ -6,6 +6,8 @@ In this example we add a `` command to check the checkbox that our extens ## Starting action group + + ```xml @@ -95,4 +97,6 @@ Note that there are now two action groups below. -``` \ No newline at end of file +``` + + \ No newline at end of file