mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2025-12-30 11:22:31 +00:00
* feat(tests): Introduces BasePageObject. * fix(tests): Use wdio aria selector where possible. * fix(tests): Correct test exclusion for Firefox. * fix(tests): Rearrange code. * feat(tests): Adds breakout tests.
17 lines
401 B
TypeScript
17 lines
401 B
TypeScript
import { Participant } from '../helpers/Participant';
|
|
|
|
/**
|
|
* Represents the base page object.
|
|
* All page object has the current participant (holding the driver/browser session).
|
|
*/
|
|
export default class BasePageObject {
|
|
participant: Participant;
|
|
|
|
/**
|
|
* Represents the base page object.
|
|
*/
|
|
constructor(participant: Participant) {
|
|
this.participant = participant;
|
|
}
|
|
}
|