Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

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. }