PATH:
home
/
lab2454c
/
dansact.com
/
wp-content
/
plugins
/
woocommerce
/
e2e
/
tests
/
admin-analytics
const { test, expect } = require( '@playwright/test' ); test.describe( 'Analytics pages', () => { test.use( { storageState: 'e2e/storage/adminState.json' } ); for ( const aPages of [ 'Overview', 'Products', 'Revenue', 'Orders', 'Variations', 'Categories', 'Coupons', 'Taxes', 'Downloads', 'Stock', 'Settings', ] ) { test( `A user can view the ${ aPages } page without it crashing`, async ( { page, } ) => { const urlTitle = aPages.toLowerCase(); await page.goto( `/wp-admin/admin.php?page=wc-admin&path=%2Fanalytics%2F${ urlTitle }` ); const pageTitle = page.locator( 'h1' ); await expect( pageTitle ).toHaveText( aPages ); await expect( page.locator( '#woocommerce-layout__primary' ) ).toBeVisible(); } ); } } );
[-] analytics-overview.spec.js
[edit]
[+]
..
[-] analytics.spec.js
[edit]