/** * 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(); }
/** * Toggles the mute state of a specific Meet conference participant and verifies that a specific * other Meet conference participants sees a specific mute state for the former. * * @param testName the name of test (to be logged) * @param testee the {@code WebDriver} which represents the Meet conference participant whose mute * state is to be toggled * @param testeeName the name of {@code testee} to be displayed should the test fail * @param observer the {@code WebDriver} which represents the Meet conference participant to * verify the mute state of {@code testee} * @param muted the mute state of {@code testee} expected to be observed by {@code observer} */ private void toggleMuteAndCheck( String testName, WebDriver testee, String testeeName, WebDriver observer, boolean muted) { System.err.println("Start " + testName + "."); MeetUIUtils.clickOnToolbarButton(testee, "toolbar_button_mute"); MeetUIUtils.assertMuteIconIsDisplayed( observer, testee, muted, false, // audio testeeName); MeetUIUtils.assertMuteIconIsDisplayed( testee, testee, muted, false, // audio testeeName); }
/** * 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); }