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

27 строки
1.2 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="AttachImageActionGroup">
  11. <annotations>
  12. <description>Uploads the provided Image to Media Gallery.
  13. If you use this action group, you MUST add steps to delete the image in the "after" steps.</description>
  14. </annotations>
  15. <arguments>
  16. <argument name="Image"/>
  17. </arguments>
  18. <waitForElement selector="{{MediaGallerySection.BrowseUploadImage}}" stepKey="waitForUploadImageElement"/>
  19. <attachFile selector="{{MediaGallerySection.BrowseUploadImage}}" userInput="{{Image.value}}" stepKey="uploadImage"/>
  20. <waitForPageLoad stepKey="waitForPageLoad"/>
  21. <waitForPageLoad stepKey="waitForLoadingMaskToDisappear"/>
  22. <waitForElementVisible selector="{{MediaGallerySection.imageOrImageCopy(Image.fileName, Image.extension)}}" stepKey="waitForUploadImage"/>
  23. </actionGroup>
  24. </actionGroups>