mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-25 20:46:48 +00:00
12 lines
181 B
Ruby
12 lines
181 B
Ruby
# frozen_string_literal: true
|
|
|
|
module MenuHelper
|
|
def open_login_modal
|
|
find("a", text: "Log in").click
|
|
end
|
|
|
|
def have_login_modal
|
|
have_selector ".login-modal"
|
|
end
|
|
end
|