KpFillInGuestActionGroup.xml 1.7 KB

1234567891011121314151617181920212223242526
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. /**
  4. * This file is part of the Klarna KP module
  5. *
  6. * (c) Klarna Bank AB (publ)
  7. *
  8. * For the full copyright and license information, please view the NOTICE
  9. * and LICENSE files that were distributed with this source code.
  10. */
  11. -->
  12. <actionGroups xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  13. xsi:noNamespaceSchemaLocation="urn:magento:mftf:Test/etc/actionGroupSchema.xsd">
  14. <actionGroup name="KpFillInGuest">
  15. <fillField selector="{{KpGuestCheckoutShippingSection.email}}" userInput="{{KpCustomerEntityOne.email}}" stepKey="kpEnterEmail"/>
  16. <fillField selector="{{KpGuestCheckoutShippingSection.firstName}}" userInput="{{KpCustomerEntityOne.firstname}}" stepKey="kpEnterFirstName"/>
  17. <fillField selector="{{KpGuestCheckoutShippingSection.lastName}}" userInput="{{KpCustomerEntityOne.lastname}}" stepKey="kpEnterLastName"/>
  18. <fillField selector="{{KpGuestCheckoutShippingSection.street}}" userInput="{{KpCustomerAddressSimple.street[0]}}" stepKey="kpEnterStreet"/>
  19. <fillField selector="{{KpGuestCheckoutShippingSection.city}}" userInput="{{KpCustomerAddressSimple.city}}" stepKey="kpEnterCity"/>
  20. <selectOption selector="{{KpGuestCheckoutShippingSection.region}}" userInput="{{KpCustomerAddressSimple.state}}" stepKey="kpSelectRegion"/>
  21. <fillField selector="{{KpGuestCheckoutShippingSection.postcode}}" userInput="{{KpCustomerAddressSimple.postcode}}" stepKey="kpEnterPostcode"/>
  22. <fillField selector="{{KpGuestCheckoutShippingSection.telephone}}" userInput="6149999999" stepKey="kpEnterTelephone"/>
  23. <waitForLoadingMaskToDisappear stepKey="kpWaitForLoadingMask"/>
  24. </actionGroup>
  25. </actionGroups>