Files
openfoodnetwork/spec/support/features/trixeditor_helper.rb
Jean-Baptiste Bellet bb211bfc84 Allow HTML via trix editor for custom tab content
+ update spec as well
2023-05-25 09:19:51 +02:00

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