分度器で ui-select をテストしようとしています。この ui-select には、国のリストがあります。私のhtmlは次のようになります:
<ui-select ng-model="datiAnagrafici.countryOfBirth" name="countryOfBirth" theme="bootstrap" reset-search-input="true" append-to-body="true" required blur>
<ui-select-match placeholder="paese di nascita">{{$select.selected.name}}</ui-select-match>
<ui-select-choices repeat="country.code as country in countries | filter: {name:$select.search}">
<span ng-bind-html="country.name"></span>
</ui-select-choices>
</ui-select>
私のページオブジェクトは次のようになります:
this.country = element(by.model('datiAnagrafici.countryOfBirth'));
this.fillForm = function(){
this.country.sendKeys('IT');
}
私の仕様ファイルには次のものがあります。
it('should fill the form', function() {
form.fillForm();
})
しかし、テストを実行すると、送信されたデータが ng-model に入力されません。ヒントはありますか?ありがとう