1
這是我的oi.select的模板html。量角器和oi.select選項點擊
<oi-select class="oi-select"
oi-options="group.name for group in groups track by group._id"
multiple placeholder="" ng-model="selectedGroups">
</oi-select>
我試着在test.js
element(by.model('selectedGroups')).click().then(function() {
element.all(by.repeater("(group, options) in groups"))
.then(function (guests) {
guests[0].click();
});
});
只點擊一個選項下面的代碼。 guests[0].getText()
給出所有組名稱標籤。如果你之前解決它,請幫助我。我嘗試了很多select的例子,但沒有找到具體的oi.select。謝謝。
有什麼問題,你有什麼,因爲如果我看https://tamtakoe.github.io/oi.select/並創建一個例子測試我能打開選擇並選擇一個選項。 – wswebcreation
你想要點擊所有可用選項嗎? –
@wswebcreation是的,我只能選擇一個選項。這就像隨機。 –