Currently, I am utilizing the angular-multi-select dropdown feature available at https://github.com/isteven/angular-multi-select. My next step involves writing test cases in Protractor for this specific functionality.
<div ng-show="!attribute.isMultivalued && page != 'view'"
class="select-group"
multi-select
input-model="typesDataDup"
output-model="attribute.types"
button-label="typeName"
item-label="typeName"
tick-property="ticked"
selection-mode="single"
helper-elements="filter"
is-disabled = "page == 'view'">
</div>
An issue I'm facing is the inability to send data using the model because the ng-model tag is not specified. Any guidance on how to write a test case for this scenario would be greatly appreciated.