您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 
 

25 行
1.3 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="AssertStorefrontCartItemExcludingTaxActionGroup">
  11. <annotations>
  12. <description>Validates that the provided product price and subtotal excluding tax are present and correct in the Shopping Cart.</description>
  13. </annotations>
  14. <arguments>
  15. <argument name="productName" defaultValue="{{_defaultProduct.name}}" type="string"/>
  16. <argument name="productPriceExcludingTax" defaultValue="150" type="string"/>
  17. <argument name="productSubtotalExcludingTax" defaultValue="150" type="string"/>
  18. </arguments>
  19. <see userInput="{{productPriceExcludingTax}}" selector="{{StorefrontCheckoutCartItemTaxSection.productPriceExcludingTaxByName(productName)}}" stepKey="assertProductPriceExcludingTax"/>
  20. <see userInput="{{productSubtotalExcludingTax}}" selector="{{StorefrontCheckoutCartItemTaxSection.productSubtotalExcludingTaxByName(productName)}}" stepKey="assertProductSubtotalExcludingTax"/>
  21. </actionGroup>
  22. </actionGroups>