diff --git a/selectors/feds/feds.creativeCloudUnavSanity.page.js b/selectors/feds/feds.creativeCloudUnavSanity.page.js index b9e34179..39156722 100644 --- a/selectors/feds/feds.creativeCloudUnavSanity.page.js +++ b/selectors/feds/feds.creativeCloudUnavSanity.page.js @@ -169,7 +169,7 @@ export default class CreativeCloudUnavSanity { }, { element: this.individuals, - conditions: { defaultVisibility: true, excludeCountries: ['Germany', 'France'] }, + conditions: { defaultVisibility: true, excludeCountries: ['Germany', 'France', 'India'] }, }, { element: this.business, conditions: { defaultVisibility: true, excludeCountries: ['India'] } }, { @@ -188,15 +188,14 @@ export default class CreativeCloudUnavSanity { { element: this.graphicDesign, conditions: { defaultVisibility: true, excludeCountries: ['India'] } }, { element: this.Video, conditions: { defaultVisibility: true, excludeCountries: ['India'] } }, { element: this.illustration, conditions: { defaultVisibility: true, excludeCountries: ['India'] } }, - { element: this.socialMedia, conditions: { defaultVisibility: true, excludeCountries: ['India', 'United States'] } }, { element: this.threeDAndAR, conditions: { defaultVisibility: true, excludeCountries: ['India'] } }, { element: this.pdf, conditions: { defaultVisibility: true, excludeCountries: ['India'] } }, { element: this.aiOverviewCC, conditions: { defaultVisibility: true, excludeCountries: ['Japan'] } }, { element: this.adobeFirefly, conditions: { defaultVisibility: true, excludeCountries: ['Japan'] } }, - { element: this.adobecom, conditions: { defaultVisibility: true } }, - { element: this.pdfAndESignatures, conditions: { defaultVisibility: true } }, - { element: this.marketingAndCommerce, conditions: { defaultVisibility: true } }, - { element: this.helpAndSupport, conditions: { defaultVisibility: true } }, + { element: this.adobecom, conditions: { defaultVisibility: true, excludeCountries: ['United Kingdom'] } }, + { element: this.pdfAndESignatures, conditions: { defaultVisibility: true, excludeCountries: ['United Kingdom'] } }, + { element: this.marketingAndCommerce, conditions: { defaultVisibility: true, excludeCountries: ['United Kingdom'] } }, + { element: this.helpAndSupport, conditions: { defaultVisibility: true, excludeCountries: ['United Kingdom'] } }, { element: this.forGovernmentAgencies, conditions: { includeCountries: ['Japan'] } }, { element: this.benifitsForCreativeCloudPaidMembers, conditions: { includeCountries: ['Japan'] } }, { element: this.adobeFireflyCC, conditions: { includeCountries: ['Japan'] } }, @@ -383,7 +382,6 @@ export default class CreativeCloudUnavSanity { { element: this.whatIsCC, conditions: { defaultVisibility: true } }, { element: this.photographers, conditions: { defaultVisibility: true } }, { element: this.studentsAndTeachers, conditions: { defaultVisibility: true } }, - { element: this.individuals, conditions: { defaultVisibility: true, excludeCountries: ['Germany', 'France', 'Italy'] } }, { element: this.business, conditions: { defaultVisibility: true } }, { element: this.schoolsAndUniversities, conditions: { defaultVisibility: true } }, { element: this.viewPlansAndPricing, conditions: { defaultVisibility: true } }, @@ -552,7 +550,7 @@ export default class CreativeCloudUnavSanity { }, { element: this.individuals, - conditions: { defaultVisibility: true, excludeCountries: ['Germany', 'France'] }, + conditions: { defaultVisibility: true, excludeCountries: ['Germany', 'France', 'India'] }, }, { element: this.business, conditions: { defaultVisibility: true, excludeCountries: ['India'] } }, { @@ -571,7 +569,6 @@ export default class CreativeCloudUnavSanity { { element: this.graphicDesign, conditions: { defaultVisibility: true, excludeCountries: ['India'] } }, { element: this.Video, conditions: { defaultVisibility: true, excludeCountries: ['India'] } }, { element: this.illustration, conditions: { defaultVisibility: true, excludeCountries: ['India'] } }, - { element: this.socialMedia, conditions: { defaultVisibility: true, excludeCountries: ['India', 'United States'] } }, { element: this.threeDAndAR, conditions: { defaultVisibility: true, excludeCountries: ['India'] } }, { element: this.pdf, conditions: { defaultVisibility: true, excludeCountries: ['India'] } }, { element: this.aiOverviewCC, conditions: { defaultVisibility: true, excludeCountries: ['Japan'] } }, diff --git a/tests/feds/creativeCloudUnavSanity.test.js b/tests/feds/creativeCloudUnavSanity.test.js index 1942315e..34391f26 100644 --- a/tests/feds/creativeCloudUnavSanity.test.js +++ b/tests/feds/creativeCloudUnavSanity.test.js @@ -24,7 +24,6 @@ test.describe('Test Suite for Creative Cloud Page Components', () => { await creative.validatingCreativityAndDesign(features[0].country); await creative.validatingExplore(features[0].country); await creative.validatingLearnAndSupport(); - await creative.closingPromoButton(); await creative.validatingFooter(features[0].country); await creative.validatingBuyNowButton(features[0].buyNowUrl); }); @@ -91,7 +90,6 @@ test.describe('Test Suite for Creative Cloud Page Components', () => { await creative.validatingProgram(features[4].country); await creative.validatingSubjectArea(features[4].country); await creative.validatingTrainingAndSupport(features[4].country); - await creative.closingPromoButton(); await creative.validatingFooter(features[4].country); await creative.validatingBuyNowButton(features[4].buyNowUrl); }); @@ -172,7 +170,6 @@ test.describe('Test Suite for Creative Cloud Page Components', () => { await creative.validatingCreativityAndDesign(features[9].country); await creative.validatingExplore(features[9].country); await creative.validatingLearnAndSupport(); - await creative.closingPromoButton(); await creative.validatingFooter(features[9].country); await creative.validatingBuyNowButton(features[9].buyNowUrl); }); @@ -181,7 +178,7 @@ test.describe('Test Suite for Creative Cloud Page Components', () => { console.info(`[Creative Cloud] Checking Page: Korea = ${baseURL}${features[10].path}`); const pageURL = `${baseURL}${features[10].path}`; - await page.goto(pageURL, { waitUntil: 'networkidle' }); + await page.goto(pageURL, { waitUntil: 'domcontentloaded' }); await expect(page).toHaveURL(pageURL); await creative.validatingGnav(features[10].country); diff --git a/tests/feds/tabCreativeCloudUnavSanity.test.js b/tests/feds/tabCreativeCloudUnavSanity.test.js index 7bbe545c..694f1e91 100644 --- a/tests/feds/tabCreativeCloudUnavSanity.test.js +++ b/tests/feds/tabCreativeCloudUnavSanity.test.js @@ -24,7 +24,6 @@ test.describe('Test Suite for Creative Cloud Page Components', () => { await creative.validatingCreativityAndDesignTabiPad(features[0].country); await creative.validatingExplore(features[0].country); await creative.validatingLearnAndSupport(); - await creative.closingPromoButton(); await creative.validatingFooter(features[0].country); await creative.validatingBuyNowButton(features[0].buyNowUrl); }); @@ -91,7 +90,6 @@ test.describe('Test Suite for Creative Cloud Page Components', () => { await creative.validatingProgram(features[4].country); await creative.validatingSubjectArea(features[4].country); await creative.validatingTrainingAndSupport(features[4].country); - await creative.closingPromoButton(); await creative.validatingFooter(features[4].country); await creative.validatingBuyNowButton(features[4].buyNowUrl); }); @@ -171,7 +169,6 @@ test.describe('Test Suite for Creative Cloud Page Components', () => { await creative.validatingCreativityAndDesignTabiPad(features[9].country); await creative.validatingExplore(features[9].country); await creative.validatingLearnAndSupport(); - await creative.closingPromoButton(); await creative.validatingFooter(features[9].country); await creative.validatingBuyNowButton(features[9].buyNowUrl); }); @@ -180,7 +177,7 @@ test.describe('Test Suite for Creative Cloud Page Components', () => { console.info(`[Creative Cloud] Checking Page: Korea = ${baseURL}${features[10].path}`); const pageURL = `${baseURL}${features[10].path}`; - await page.goto(pageURL, { waitUntil: 'networkidle' }); + await page.goto(pageURL, { waitUntil: 'domcontentloaded' }); await expect(page).toHaveURL(pageURL); await creative.validatingGnav(features[10].country);