mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-28 21:07:16 +00:00
10 lines
200 B
Ruby
10 lines
200 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Spree
|
|
module CheckoutHelpers
|
|
def click_checkout_continue_button
|
|
page.find('#add_new_save_checkout_button input[type=submit]').click
|
|
end
|
|
end
|
|
end
|