You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

BasePageObject.ts 401B

12345678910111213141516
  1. import { Participant } from '../helpers/Participant';
  2. /**
  3. * Represents the base page object.
  4. * All page object has the current participant (holding the driver/browser session).
  5. */
  6. export default class BasePageObject {
  7. participant: Participant;
  8. /**
  9. * Represents the base page object.
  10. */
  11. constructor(participant: Participant) {
  12. this.participant = participant;
  13. }
  14. }