mirror of
https://gh.wpcy.net/https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2026-04-28 03:09:16 +08:00
16 lines
308 B
TypeScript
16 lines
308 B
TypeScript
/**
|
|
* Internal dependencies
|
|
*/
|
|
import { PcpAdminPage } from './pcp-admin-page';
|
|
import urls from '../urls';
|
|
|
|
export class PcpOverview extends PcpAdminPage {
|
|
url = urls.admin.pcp.overview;
|
|
|
|
// Locators
|
|
overviewContainer = () => this.page.locator( '.ppcp-r-tab-overview' );
|
|
|
|
// Actions
|
|
|
|
// Assertions
|
|
}
|