๐Ÿ“ฆ Kong / kong-manager

๐Ÿ“„ ca-certificates.ts ยท 13 lines
1
2
3
4
5
6
7
8
9
10
11
12
13import type { Page } from '@playwright/test'
import { POM } from '.'

export class CACertificateListPage extends POM {
  public $ = {
    ...POM.$,
  }

  constructor(page: Page) {
    super(page, '/ca-certificates')
  }
}