mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-03-24 05:38:52 +00:00
18 lines
448 B
Ruby
18 lines
448 B
Ruby
module AdminHelper
|
|
def have_admin_menu_item(menu_item_name)
|
|
have_selector "ul[data-hook='admin_tabs'] li", text: menu_item_name
|
|
end
|
|
|
|
def toggle_columns(*labels)
|
|
# open dropdown
|
|
find("div#columns-dropdown", text: "COLUMNS").click
|
|
|
|
labels.each do |label|
|
|
find("div#columns-dropdown div.menu div.menu_item", text: label).click
|
|
end
|
|
|
|
# close dropdown
|
|
find("div#columns-dropdown", text: "COLUMNS").click
|
|
end
|
|
end
|