I have following input
<input type="text" class="input-small note-editable"/>
How can i get access to that input to send keys? So far i was trying this:
this.inputForm = element(by.css('.input-small .note-editable'));
and
this.inputForm = element(by.css('.input-small'));
this.inputForm2 = this.inputForm.element(by.css('.note-editable'));
But it doesn't work, any advice?