2025-01-14 08:01:16 -06:00
|
|
|
import PreMeetingScreen from './PreMeetingScreen';
|
|
|
|
|
|
|
|
|
|
const DISPLAY_NAME_TEST_ID = 'lobby.nameField';
|
|
|
|
|
const JOIN_BUTTON_TEST_ID = 'lobby.knockButton';
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Page object for the Lobby screen.
|
|
|
|
|
*/
|
|
|
|
|
export default class LobbyScreen extends PreMeetingScreen {
|
|
|
|
|
/**
|
|
|
|
|
* Returns the join button element.
|
|
|
|
|
*/
|
|
|
|
|
getJoinButton(): ChainablePromiseElement {
|
|
|
|
|
return this.participant.driver.$(`[data-testid="${JOIN_BUTTON_TEST_ID}"]`);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Returns the display name input element.
|
|
|
|
|
*/
|
|
|
|
|
getDisplayNameInput(): ChainablePromiseElement {
|
|
|
|
|
return this.participant.driver.$(`[data-testid="${DISPLAY_NAME_TEST_ID}"]`);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Waits for lobby screen to load.
|
|
|
|
|
*/
|
2025-01-23 08:13:57 -06:00
|
|
|
waitForLoading(): Promise<void> {
|
2025-02-27 10:23:59 -06:00
|
|
|
return this.participant.driver.$('.lobby-screen').waitForDisplayed({ timeout: 6000 });
|
2025-01-14 08:01:16 -06:00
|
|
|
}
|
|
|
|
|
}
|