mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-02-09 23:06:06 +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
|