I am trying to submit a form which uses TextAngular for some of the input fields.
I can't seem to find anything about populating these fields - the closest I have come is this, but if I try something similar I get an error that Element is not clickable at point (240, 249). Other element would receive the click.
Edit:
Finally got the following to work, but given the lack of search results I am assuming there is a more straight forward way...
element(by.model('activity.description')).element(by.css('.ta-bind')).click();
browser.actions().sendKeys(data.description).perform();