Feature: Calculate sales tax during an ecommerce purchase
  As a user of the Arc XP subscription module,
  I want the system to calculate sales tax using the Stripe Taxation API,
  So that I can ensure accurate tax calculations during my purchases.
  Scenario: Calculate sales tax for a purchase
    Given I am on the checkout page
    And I have entered my shipping address
    When I proceed to the payment step
    Then the system should call the Stripe Taxation API
    And the sales tax should be calculated based on my shipping address
    And the total amount including sales tax should be displayed
          
         
      
Love it!