Here's my question,
element.all(by.repeater('user in users')).then(function(rows) {
// would like to find an element in rows by.css for.exemple
}
EDIT :
I precise that I'm searching an element using
rows[rows.length - 1]
and I already tried
rows[rows.length - 1].element(by.css('.fa.fa-trash-o')).click();
But I got an error
element is not attached to the page document
Thanks for your answers !