I attempting to set a text field value using angular's e2e test framework. Per their documentation, I have to use:
input(<model>).enter(<value>)
However, since the model is embedded in a repeater, passing the model isn't straight forward from the test context. I can though, pull it by using:
element('my_element_here', 'description')
However, the .enter(<value>)
call can ONLY be called from what input()
returns apparently and I can't figure out how to convert the return of element
to what input()
returns so I can simply call enter()
on it!!
I have to assume I'm just overlooking something...