Comment obtenir une ligne et sa colonne d'une table avec le Rapporteur

<div class="k-grid-content">
    <table>
        <tbody>
            <tr>
                <td>row1Col1</td>
                <td>row1Col2</td>
                <td>row1Col3</td>
            </tr>

            <tr>
                <td>row2Col1</td>
                <td>row3Col2</td>
                <td>row4Col3</td>
            </tr>

            <tr>
                <td>row3Col1</td>
                <td>row3Col2</td>
                <td>row3Col3</td>
            </tr>

        </tbody>
    </table>
</div>


var grid = element.all(by.css('.k-grid-content tr')); //this will return row1,row2,row3

mais je n'arrive pas à utiliser le code ci-dessous pour obtenir chaque ligne et de sa colonne.

grid.each.each(function(row){
    var rowElems = row.findElements(by.tagName('td'));
    expect(rowElems.get(0).getText()).toMatch('/Col1/');
});

le message d'erreur suivant s'afficher.
Message:
TypeError: Object [object object] n'a pas de méthode 'findElements'

OriginalL'auteur andy man | 2014-10-01