Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 
 
 

26 строки
1.1 KiB

  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="AssertStoreFrontCMSPageActionGroup">
  11. <annotations>
  12. <description>Validates that the provided CMS Page Title, Content and Heading are present and correct on a Storefront CMS Page.</description>
  13. </annotations>
  14. <arguments>
  15. <argument name="cmsTitle" type="string"/>
  16. <argument name="cmsContent" type="string"/>
  17. <argument name="cmsContentHeading" type="string"/>
  18. </arguments>
  19. <see selector="{{StorefrontCMSPageSection.title}}" userInput="{{cmsTitle}}" stepKey="seeTitle"/>
  20. <see selector="{{StorefrontCMSPageSection.mainTitle}}" userInput="{{cmsContentHeading}}" stepKey="seeContentHeading"/>
  21. <see selector="{{StorefrontCMSPageSection.mainContent}}" userInput="{{cmsContent}}" stepKey="seeContent"/>
  22. </actionGroup>
  23. </actionGroups>