Skip to content

Commit

Permalink
pageobj(ParticipantsPane/Toolbar): updated text for Invite someone label
Browse files Browse the repository at this point in the history
  • Loading branch information
Calinteodor committed Nov 5, 2024
1 parent dd20268 commit 0bc0e78
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public class ParticipantsPane
* Accessibility labels to be used as selectors for finding WebElements
* within the {@link ParticipantsPane}.
*/
private final static String INVITE = "Invite Someone";
private final static String INVITE = "Invite someone";

/**
* The ID of the context menu button.
Expand Down Expand Up @@ -153,11 +153,11 @@ public void askToUnmute(WebParticipant participantToUnmute, boolean fromContextM
hoverOnMeetingParticipantListItem.perform();


if (fromContextMenu)
if (fromContextMenu)
{
clickAskToUnmuteContextMenuById(participantToUnmute);
}
else
else
{
clickAskToUnmuteQuickActionButtonById(participantToUnmute);
}
Expand All @@ -179,11 +179,11 @@ public void allowVideo(WebParticipant participantToUnmute, boolean fromContextMe
hoverOnMeetingParticipantListItem.moveToElement(meetingParticipantListItem);
hoverOnMeetingParticipantListItem.perform();

if (fromContextMenu)
if (fromContextMenu)
{
clickAllowVideoContextMenuById(participantToUnmute);
}
else
else
{
clickAllowVideoQuickActionButtonById(participantToUnmute);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public class Toolbar
public final static String HANGUP = "Leave the meeting";
public final static String HELP = "Help";
public final static String INVITE = "Invite people";
public final static String INVITE_CSS = "Invite Someone";
public final static String INVITE_CSS = "Invite someone";
public final static String LIVE_STREAM = "Live Stream";
public final static String OVERFLOW = "More actions";
public final static String OVERFLOW_MENU = "More actions menu" ;
Expand Down

0 comments on commit 0bc0e78

Please sign in to comment.