123456789101112131415161718192021222324 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!--
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- -->
- <actionGroups xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:noNamespaceSchemaLocation="urn:magento:mftf:Test/etc/actionGroupSchema.xsd">
- <actionGroup name="ClearWidgetsFromCMSContent">
- <amOnPage url="{{CmsPageEditPage.url('2')}}" stepKey="navigateToEditHomePagePage"/>
- <waitForPageLoad stepKey="waitEditHomePagePageToLoad"/>
- <click selector="{{CmsNewPagePageContentSection.header}}" stepKey="clickContentTab" />
- <waitForElementNotVisible selector="{{CmsWYSIWYGSection.CheckIfTabExpand}}" stepKey="waitForTabExpand"/>
- <executeJS function="jQuery('[id=\'cms_page_form_content_ifr\']').attr('name', 'preview-iframe')" stepKey="setPreviewFrameName"/>
- <switchToIFrame selector="preview-iframe" stepKey="switchToIframe"/>
- <fillField selector="{{TinyMCESection.EditorContent}}" userInput="Hello TinyMCE4!" stepKey="clearWidgets"/>
- <switchToIFrame stepKey="switchOutFromIframe"/>
- <executeJS function="tinyMCE.activeEditor.setContent('Hello TinyMCE4!');" stepKey="executeJSFillContent1"/>
- <click selector="{{InsertWidgetSection.save}}" stepKey="saveWidget"/>
- <waitForPageLoad stepKey="waitSaveToBeApplied"/>
- <see selector="{{AdminProductMessagesSection.successMessage}}" userInput="You saved the page." stepKey="seeSaveSuccess"/>
- </actionGroup>
- </actionGroups>
|