in integration/pages/RosterTestPage.js [120:129]
async checkMicrophoneIcon(attendeeName, muted) {
const isMatched = await this.waitUntil(async () => {
const rosterCell = await this.getAttendeeRosterCell(attendeeName);
const title = await rosterCell.findElement(By.css('title')).getAttribute('innerHTML');
const target = muted ? 'Muted microphone' : 'Microphone';
return title === target;
});
assert(isMatched, `Wrong microphone icon when muted is ${muted}`);
}