mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-27 21:06:49 +00:00
10 lines
198 B
Ruby
10 lines
198 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Features
|
|
module TrixEditorHelper
|
|
def fill_in_trix_editor(id, with:)
|
|
find(:xpath, "//trix-editor[@input='#{id}']").click.set(with)
|
|
end
|
|
end
|
|
end
|