Created
October 27, 2018 01:01
-
-
Save frankolson/eaa7734795642eda837abf345242d430 to your computer and use it in GitHub Desktop.
Capybara helpers for the Trix Editor
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# test/support/capybara_helpers.rb | |
def fill_in_trix_editor(id, with:) | |
find(:xpath, "//trix-editor[@input='#{id}']").click.set(with) | |
end | |
def find_trix_editor(id) | |
find(:xpath, "//*[@id='#{id}']", visible: false) | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment