<div dir="ltr">Flow browser tests have both<br>  textarea(:new_topic_body, name: "topiclist_content")<br>and<br>  text_area(:post_edit, css: ".flow-edit-post-form textarea")<br><div><br></div><div>But they're not interchangeable. I wanted to identify a "dialog_input" textarea within a dialog_element, and this:<br><br>  textarea(:dialog_input) do |page|<br>    page.dialog_element.textarea_element(name: "topic_reason")<br>  end<br>failed with<br>      undefined method `textarea_element' for #<Watir::Div:0x000000039a9c70> (NoMethodError)<br><br>Instead I had to use text_area_element<br></div><div>    page.dialog_element.text_area_element(name: "topic_reason")<br><br>Working with the Cheezy Watir cucumber Ruby Selenium WebDriver stack makes me feel clueless :-/<br><div>-- <br><div dir="ltr">=S Page  Features engineer<br></div>
</div></div></div>