| | |
| | |
| | |
| | |
| |
|
| | import { |
| | DataHelper, |
| | StatsPage, |
| | SidebarComponent, |
| | TestAccount, |
| | getTestAccountByFeature, |
| | envToFeatureKey, |
| | envVariables, |
| | } from '@automattic/calypso-e2e'; |
| | import { Page, Browser } from 'playwright'; |
| | import { skipDescribeIf } from '../../jest-helpers'; |
| |
|
| | declare const browser: Browser; |
| |
|
| | |
| | |
| | |
| | |
| | |
| | describe( DataHelper.createSuiteTitle( 'Stats' ), function () { |
| | let page: Page; |
| | let testAccount: TestAccount; |
| | let statsPage: StatsPage; |
| |
|
| | const accountName = getTestAccountByFeature( envToFeatureKey( envVariables ), [ |
| | { gutenberg: 'stable', siteType: 'simple', accountName: 'defaultUser' }, |
| | ] ); |
| |
|
| | beforeAll( async () => { |
| | page = await browser.newPage(); |
| |
|
| | testAccount = new TestAccount( accountName ); |
| | await testAccount.authenticate( page ); |
| | } ); |
| |
|
| | it( 'Navigate to Stats', async function () { |
| | statsPage = new StatsPage( page ); |
| |
|
| | if ( envVariables.ATOMIC_VARIATION === 'ecomm-plan' ) { |
| | return await statsPage.visit( |
| | DataHelper.getAccountSiteURL( accountName, { protocol: false } ) |
| | ); |
| | } |
| | const sidebarComponent = new SidebarComponent( page ); |
| | await sidebarComponent.navigate( 'Jetpack', 'Stats' ); |
| | } ); |
| |
|
| | describe( 'Traffic', function () { |
| | it( 'Click on the Traffic tab', async function () { |
| | await statsPage.clickTab( 'Traffic' ); |
| | } ); |
| |
|
| | |
| | |
| | |
| | |
| |
|
| | it( 'Filter traffic activity to Likes', async function () { |
| | await statsPage.showStatsOfType( { tab: 'Traffic', type: 'Likes' } ); |
| | } ); |
| | } ); |
| |
|
| | describe( 'Insights', function () { |
| | it( 'Click on Insights tab', async function () { |
| | await statsPage.clickTab( 'Insights' ); |
| | } ); |
| |
|
| | it( 'Click link to see all annual insights', async function () { |
| | await statsPage.clickViewAllAnnualInsights(); |
| | |
| | |
| |
|
| | |
| | } ); |
| |
|
| | it( 'Go back', async function () { |
| | await page.goBack(); |
| | } ); |
| | } ); |
| |
|
| | describe( 'Subscribers', function () { |
| | it( 'Click on Subscribers tab', async function () { |
| | await statsPage.clickTab( 'Subscribers' ); |
| | } ); |
| | } ); |
| |
|
| | |
| | |
| | skipDescribeIf( accountName !== 'jetpackAtomicEcommPlanUser' )( 'Store', function () { |
| | it( 'Click on the Store tab', async function () { |
| | await statsPage.clickTab( 'Store' ); |
| | } ); |
| |
|
| | it( 'Select "Years" stats period', async function () { |
| | await statsPage.selectStatsPeriod( 'Years' ); |
| | } ); |
| |
|
| | it( 'Select "Gross sales" stats type', async function () { |
| | await statsPage.showStatsOfType( { tab: 'Store', type: 'Gross Sales' } ); |
| | } ); |
| | } ); |
| | } ); |
| |
|