如何使用量角器定位器找到子元素?

时间:2015-06-25 21:00:11

标签: javascript angularjs selenium selenium-webdriver protractor

您可以在以下DOM中为<input>元素建议定位器吗? by.repeater只能让我直到<td>元素。任何后续的量角器定位器都没有找到下面的<input>元素。提前谢谢!

<table class="table table-striped table-hover">
    <thead>
    <tbody class="ng-scope" ng-repeat="devices in collection track by $index" >
        <tr class="ng-scope ng-isolate-scope"  st-select-row="devices" st-select-mode="single">
        <td>
            <chk-select class="ng-isolate-scope" emitselectedrec="selectedRows" chkmode="multiple" rowobj="clusters">
                <input type="checkbox" ng-transclude="" ng-click="pushToSelected(row)" uid="1">
           </chk-select>
        </td>
      </tr>
    </tbody>
</table>

3 个答案:

答案 0 :(得分:0)

如果您依赖chk-select元素及其rowobj属性,该怎么办:

element(by.css("chk-select[rowobj=clusters] input[type=checkbox]"));

答案 1 :(得分:0)

您可以使用JavascriptExecutior驱动程序。我会很快提高你的答案,但你可以用这个驱动程序做很多事情。

答案 2 :(得分:-1)

在您的情况下,它只是element(by.css('input'))