/** * Closes the participant and leaves the owner alone in the room. Mutes the owner and then joins * new participant and checks the status of the mute icon. At the end unmutes to clear the state. */ public void muteOwnerBeforeSecondParticipantJoins() { System.err.println("Start muteOwnerBeforeSecondParticipantJoins."); WebDriver owner = ConferenceFixture.getOwner(); ConferenceFixture.close(ConferenceFixture.getSecondParticipant()); // just in case wait TestUtils.waitMillis(1000); MeetUIUtils.clickOnToolbarButton(owner, "toolbar_button_mute"); WebDriver secondParticipant = ConferenceFixture.startSecondParticipant(); MeetUtils.waitForParticipantToJoinMUC(secondParticipant, 15); MeetUtils.waitForIceConnected(secondParticipant); MeetUIUtils.assertMuteIconIsDisplayed( secondParticipant, owner, true, // should be muted false, // audio "owner"); // now lets unmute unMuteOwnerAndCheck(); }
/** Mutes the owner and checks at other participant is this is visible. */ public void muteOwnerAndCheck() { toggleMuteAndCheck( "muteOwnerAndCheck", ConferenceFixture.getOwner(), "owner", ConferenceFixture.getSecondParticipant(), true); TestUtils.waitMillis(2000); }
/** * UnMutes once again the second participant and checks in the owner page does this change is * reflected. */ public void participantUnMutesAfterOwnerMutedHimAndCheck() { System.err.println("Start participantUnMutesAfterOwnerMutedHimAndCheck."); TestUtils.waitMillis(1000); MeetUIUtils.clickOnToolbarButton( ConferenceFixture.getSecondParticipant(), "toolbar_button_mute"); TestUtils.waitMillis(1000); MeetUIUtils.assertMuteIconIsDisplayed( ConferenceFixture.getOwner(), ConferenceFixture.getSecondParticipant(), false, // should be unmuted false, // audio "participant2"); // lets give time to the ui to reflect the change in the ui of the owner TestUtils.waitMillis(1000); }