Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.
 
 
 
 
 
 

37 рядки
1.7 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="AssertImageAttributesOnEnhancedMediaGalleryActionGroup">
  11. <annotations>
  12. <description>Assets image information on the Media Gallery grid</description>
  13. </annotations>
  14. <arguments>
  15. <argument name="image"/>
  16. </arguments>
  17. <grabTextFrom selector="{{AdminEnhancedMediaGalleryImageDescriptionSection.title}}" stepKey="grabImageTitle"/>
  18. <assertStringContainsString stepKey="verifyImageTitle">
  19. <actualResult type="variable">grabImageTitle</actualResult>
  20. <expectedResult type="string">{{image.title}}</expectedResult>
  21. </assertStringContainsString>
  22. <grabTextFrom selector="{{AdminEnhancedMediaGalleryImageDescriptionSection.contentType}}" stepKey="grabContentType"/>
  23. <assertStringContainsStringIgnoringCase stepKey="verifyContentType">
  24. <actualResult type="variable">grabContentType</actualResult>
  25. <expectedResult type="string">{{image.extension}}</expectedResult>
  26. </assertStringContainsStringIgnoringCase>
  27. <grabTextFrom selector="{{AdminEnhancedMediaGalleryImageDescriptionSection.dimensions}}" stepKey="grabDimensions"/>
  28. <assertNotEmpty stepKey="verifyDimensions">
  29. <actualResult type="variable">grabDimensions</actualResult>
  30. </assertNotEmpty>
  31. </actionGroup>
  32. </actionGroups>