我正在使用量角器来测试角度,我想使用绑定选择器获取一个值,然后我得到了 div 的所有内容。
<div class="table-header">
<span>{{::strategyCtrl.accountLabel | translate}}</span>
{{::strategyCtrl.accountIdValue}}
</div>
例如:
element(by.binding('strategyCtrl.strategyValue'));
将返回 和 的strategyCtrl.accountLabel
值strategyCtrl.accountIdValue
。
我怎样才能只得到strategyCtrl.accountIdValue
.