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.
ghost/e2e/helpers/pages/admin/analytics/AnalyticsLocationsPage.ts

15 lines
361 B

import {Page, Locator} from '@playwright/test';
import {AdminPage} from '../AdminPage';
export class AnalyticsLocationsPage extends AdminPage {
readonly visitorsCard: Locator;
constructor(page: Page) {
super(page);
this.pageUrl = '/ghost/#/analytics/locations';
this.visitorsCard = page.getByTestId('visitors-card');
}
}