您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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