Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've run into an interesting problem with Capybara and Selenium. I have some Capybara request specs which require javascript to be enabled while a form is being completed. One of the forms is a textarea which used the Redactor Rich Text Editor.

<div class="control-group">
<%= f.label :description, "Description", class: "control-label" %>
    <div class="controls">
        <%= f.text_area :description, rows: 10, class: "redactor"%>
    </div>
</div>

When the test runs and Selenium fires (in both FF and Chrome drivers), Selenium fails on the following command:

`fill_in "Description", with: "some description"`

The error it returns is:

Selenium::WebDriver::Error::InvalidElementStateError:
   Element is not currently interactable and may not be manipulated

It seems that Selenium can't recognize the Rich Text Editor/Textarea any more. If I remove the class="redactor" which is what triggers the Redactor JS to render against the Description text area it works fine.

So my question is, 1. Is there a workaround to fill it out? 2. Alternatively, could I somehow disable the redactor js just for this test?

share|improve this question

1 Answer

up vote 1 down vote accepted

It looks like capybara will include the ability to fill_in contenteditable divs (see https://github.com/jnicklas/capybara/pull/911).

In the meantime I use the following: (you need to have :js => true for your scenario)

# fill_in_redactor :in => find(".text1"), :with => "Hello world"
def fill_in_redactor(options)
  if options[:in]
    parent = "('#{options[:in]}').find"
  else
    parent = ""
  end

  page.execute_script( "$#{parent}('.redactor_editor').html('#{options[:with]}')" )
  page.execute_script( "$#{parent}('.redactor').html('#{options[:with]}')" )
end

def no_redactor
  page.execute_script("$('.redactor').destroyEditor();");
end
share|improve this answer
Thanks - yes this seems to be correct, I came up with this while awaiting an answer page.execute_script('$("#job_description").val("some text here")') which seems to be a similar approach. I like your idea of making it a utility method - i'll definitely do that! Thank you! – cman77 Jan 25 at 21:24

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.