def test_back_on_order_review_leads_to_payment_processor(self, browser):
     checkout.goto(checkout.ORDER_REVIEW)
     checkout.back()
     checkout.assert_step(checkout.PAYMENT_PROCESSOR)
 def test_back_on_payment_processor(self, browser):
     checkout.goto(checkout.PAYMENT_PROCESSOR)
     checkout.select_valid_payment_processor()
     checkout.back()
     checkout.assert_step(checkout.SHIPPING_ADDRESS)
 def test_back_on_shipping_address(self, browser):
     checkout.goto(checkout.SHIPPING_ADDRESS)
     checkout.back()
     checkout.assert_step(checkout.CONTACT_INFORMATION)
 def test_back_on_order_review_leads_to_payment_processor(self, browser):
     checkout.goto(checkout.ORDER_REVIEW)
     checkout.back()
     checkout.assert_step(checkout.PAYMENT_PROCESSOR)
 def test_back_on_payment_processor(self, browser):
     checkout.goto(checkout.PAYMENT_PROCESSOR)
     checkout.select_valid_payment_processor()
     checkout.back()
     checkout.assert_step(checkout.SHIPPING_ADDRESS)
 def test_back_on_shipping_address(self, browser):
     checkout.goto(checkout.SHIPPING_ADDRESS)
     checkout.back()
     checkout.assert_step(checkout.CONTACT_INFORMATION)