Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Capybara: How to fill a textarea without an 'id'?

I am in need to fill_in a textarea which does not have an id. Following the inspection:

<textarea class="stock-description-input js-short-description-textarea" placeholder="Select a product or enter a description" maxlength="64"></textarea>

Have you got an idea how to do it?

like image 549
TakeMeToTheMoon Avatar asked May 14 '15 12:05

TakeMeToTheMoon


1 Answers

There are different location techniques and ways to get to the desired element. stock-description-input class looks like a good thing to rely on. Use send_keys() to fill the area:

text_area = first(:css, 'textarea.stock-description-input').native
text_area.send_keys('Test')
like image 145
alecxe Avatar answered Oct 07 '22 12:10

alecxe