mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-25 20:46:48 +00:00
10 lines
151 B
Ruby
10 lines
151 B
Ruby
module MenuHelper
|
|
def open_login_modal
|
|
find("a", text: "LOG IN").click
|
|
end
|
|
|
|
def have_login_modal
|
|
have_selector ".login-modal"
|
|
end
|
|
end
|