25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 
 
 

28 satır
1.4 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="AdminPayPalRegionalLinkActionGroup">
  11. <annotations>
  12. <description>Expands the 'PAYPAL EXPRESS CHECKOUT PAYMENT SOLUTIONS' tab on the Admin Configuration page. Enables the provided PayPal Config type for the provided Country Code.</description>
  13. </annotations>
  14. <arguments>
  15. <argument name="payPalConfigType"/>
  16. <argument name="countryCode" type="string" defaultValue="us"/>
  17. </arguments>
  18. <click selector="{{payPalConfigType.configureBtn(countryCode)}}" stepKey="clickPayPalConfigureBtn"/>
  19. <waitForPageLoad stepKey="waitForPageLoad"/>
  20. <grabAttributeFrom userInput="href" selector="{{PayPalRegionalCommentSection.country(countryCode)}}" stepKey="grabCommentText"/>
  21. <assertStringContainsString stepKey="verifyCommentLink">
  22. <expectedResult type="string">https://developer.paypal.com/docs/business/pay-later/{{countryCode}}/commerce-platforms/magento2/magento-paypal/</expectedResult>
  23. <actualResult type="string">$grabCommentText</actualResult>
  24. </assertStringContainsString>
  25. </actionGroup>
  26. </actionGroups>