ClearWidgetsFromCMSContentActionGroup.xml 1.5 KB

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