我在使用angular js选择剑道组合框选择时遇到问题。我可以告诉更改值的最佳方法是在控制器上设置model.batch.type,但是我不知道该怎么做。我一直在执行脚本来搞砸,但是没有运气。任何帮助,将不胜感激。
<div class="row form-group">
<label for="type" class="col-sm-1 k-label text-right">Type</label>
<input id="type" class="col-sm-1 no-padding" kendo-combo-box data-ng-model="model.batch.type"
k-data-text-field="'name'" k-data-value-field="'id'" k-data-source="model.batchTypes"/>
<label for="size" class="col-sm-1 k-label text-right">Size</label>
<input type="text" id="size" name="size" class="col-sm-1 k-textbox" ng-required="true" data-ng-
model="model.batch.size"/>
<label class="col-sm-2 col-sm-offset-1 k-label">
<input type="checkbox" data-ng-model="model.barCodePrint" checked/> Print Batch Barcode
</label>
<button type="button" class="btn" ng-click="cancel()">Cancel</button>
<input type="submit" class="btn btn-primary" ng-disabled="createBatchForm.$invalid"
value="Create"/>
</div>
我正在尝试在第二个输入中选择一个id ='type'的选项。
最佳答案
找到基础input
元素,单击它,清除,向其发送密钥,然后按Enter键:
var comboBox = element(by.css("input#type"));
comboBox.click();
comboBox.clear();
combobox.sendKeys("Element inside the combobox");
combobox.sendKeys(protractor.Key.ENTER);
关于javascript - Protractor 剑道组合框,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/31139398/