mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-02-20 00:37:26 +00:00
10 lines
179 B
Ruby
10 lines
179 B
Ruby
module CheckoutWorkflow
|
|
def have_checkout_details
|
|
have_content "Customer details"
|
|
end
|
|
|
|
def toggle_accordion(name)
|
|
find("dd a", text: name).trigger "click"
|
|
end
|
|
end
|