mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-25 20:46:48 +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
|