digitalfabrik/integreat-app

View on GitHub
e2e-tests/native/test/pageobjects/page.ts

Summary

Maintainability
A
0 mins
Test Coverage
export class Page {
  readonly pageId

  constructor(pageId: string) {
    this.pageId = pageId
  }

  public async get(): Promise<true | void> {
    return $(`~${this.pageId}`).waitForExist({ timeout: 10000 })
  }
}