さまざまな情報を取得するページで4 つ使用<select>
します。ng-options
データ バインディング、名前、ID が異なることを除いて、それらはすべて次のようになります。
<div class="col-sm-3">
<label class="control-label" for="lawyer">Lawyer</label>
<select class="form-control" id="lawyer" name="lawyer" ng-model="model.lawyerUuid" required
ng-options="lawyer.uuid as lawyer.name for lawyer in model.lawyers">
</select>
</div>
これを分度器でテストして、返される弁護士が x (たとえば 2) 人だけであることを確認するにはどうすればよいですか?
私は を使用しているためng-options
、検索ng-repeat
は機能しません。次のように検索すると、<selects>
上記の 1 つだけでなく、ページ内の 4 つすべてが取得されます (したがって、それらすべてが 2 つの要素を返す場合count()
、8 になります)。
element.all(by.css('select option'))
指定された ID を持つ親を持つすべての要素を取得する方法はありますか?