generated from adobecom/milo-college
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #176 from adobecom/MWPW-164551-smoke-tests
Smoke Tests
- Loading branch information
Showing
5 changed files
with
409 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
export default class SmokeTest { | ||
constructor(page) { | ||
this.page = page; | ||
this.joinNowButton = page.locator('text="Join Now"'); | ||
this.signInButton = page.locator('.feds-signIn'); | ||
this.GNav = page.locator('.feds-topnav'); | ||
this.profileIcon = page.locator('.feds-profile-button'); | ||
this.priceList = page.locator('a.feds-navLink:has-text("Price lists")'); | ||
this.tableSelector = '.table-container'; | ||
this.searchGnav = page.locator('.feds-search-trigger'); | ||
this.searchGnavField = page.locator('.feds-search-input'); | ||
this.searchFieldPage = page.locator('#search'); | ||
this.announcemnts = page.locator('text="Announcements"'); | ||
} | ||
|
||
async verifyButtonExist() { | ||
const joinNowExist = await this.joinNowButton.isVisible(); | ||
const signInExists = await this.signInButton.isVisible(); | ||
|
||
return { | ||
joinNowButton: joinNowExist, | ||
signInButton: signInExists, | ||
}; | ||
} | ||
|
||
async verifyProtectedGnav() { | ||
const gNavExists = await this.GNav.isVisible(); | ||
|
||
return { GNav: gNavExists }; | ||
} | ||
|
||
async verifyProfileIcon() { | ||
const profileIconExists = await this.profileIcon.isVisible(); | ||
|
||
return { profileIcon: profileIconExists }; | ||
} | ||
|
||
async getCurrentUrl() { | ||
return this.page.url(); | ||
} | ||
|
||
async clickDownloadButtonInFirstRow() { | ||
const firstRowWithDownload = this.page | ||
.locator(`${this.tableSelector} tr:has(td[headers="download"])`) | ||
.first(); | ||
const downloadButton = firstRowWithDownload.locator('#button'); | ||
await downloadButton.click(); | ||
} | ||
|
||
async searchPageDownloadButton() { | ||
const downloadButton = this.page.locator('.button.anchor.hidden').first(); | ||
await downloadButton.click(); | ||
} | ||
|
||
async announcmentCardVerification() { | ||
const shadowHostCard = await this.page | ||
.locator( | ||
'announcements-cards.content.announcements-wrapper[data-idx="0"]', | ||
) | ||
.elementHandle(); | ||
const shadowRootCard = await shadowHostCard.evaluateHandle( | ||
(node) => node.shadowRoot, | ||
); | ||
|
||
const announcementsCrad = await shadowRootCard.$$('.card-wrapper'); | ||
const firstCard = announcementsCrad[0]; | ||
await firstCard.isVisible(); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,121 @@ | ||
export default { | ||
FeatureName: 'Smoke Tests', | ||
features: [ | ||
{ | ||
tcid: '1', | ||
name: '@lending-page-validation-smoke-test', | ||
path: 'https://partners.stage.adobe.com/channelpartners/drafts/automation/regression/public-page?georouting=off', | ||
tags: '@dme-smoke-test', | ||
baseURL: 'https://www.stage.adobe.com?akamaiLocale=us', | ||
}, | ||
|
||
{ | ||
tcid: '2', | ||
name: '@home-page-validation-smoke-test', | ||
path: 'https://partners.stage.adobe.com/channelpartners/drafts/automation/regression/public-page?georouting=off', | ||
tags: '@dme-smoke-test', | ||
baseURL: 'https://www.stage.adobe.com?akamaiLocale=us', | ||
data: { | ||
partnerLevel: 'cpp-latin-na-platinum:', | ||
signInButtonInternationalText: 'Sign In', | ||
}, | ||
}, | ||
|
||
{ | ||
tcid: '3', | ||
name: '@price-list-validation-smoke-test', | ||
path: 'https://partners.stage.adobe.com/channelpartners/drafts/automation/regression/public-page?georouting=off', | ||
tags: '@dme-smoke-test', | ||
basedURL: 'https://www.stage.adobe.com?akamaiLocale=us', | ||
data: { | ||
partnerLevel: 'cpp-distributor-us:', | ||
signInButtonInternationalText: 'Sign In', | ||
expectedPublicPageURL: | ||
'https://partners.stage.adobe.com/na/channelpartners/home/pricelists/', | ||
}, | ||
}, | ||
|
||
{ | ||
tcid: '4', | ||
name: '@search-page-validation-smoke-test', | ||
path: 'https://partners.stage.adobe.com/channelpartners/drafts/automation/regression/public-page?georouting=off', | ||
tags: '@dme-smoke-test', | ||
basedURL: 'https://www.stage.adobe.com?akamaiLocale=us', | ||
data: { | ||
partnerLevel: 'cpp-distributor-us:', | ||
signInButtonInternationalText: 'Sign In', | ||
searchText: 'pdf', | ||
}, | ||
}, | ||
|
||
{ | ||
tcid: '5', | ||
name: '@user-redirection-apac-smoke-test', | ||
path: 'https://partners.stage.adobe.com/channelpartners/drafts/automation/regression/public-page?georouting=off', | ||
tags: '@dme-smoke-test', | ||
basedURL: 'https://www.stage.adobe.com?akamaiLocale=us', | ||
data: { | ||
partnerLevel: 'cpp-distributor-india:', | ||
expectedPublicPageURL: | ||
'https://partners.stage.adobe.com/apac/channelpartners/drafts/automation/regression/protected-home#', | ||
signInButtonInternationalText: 'Sign In', | ||
}, | ||
}, | ||
|
||
{ | ||
tcid: '6', | ||
name: '@user-redirection-emea-smoke-test', | ||
path: 'https://partners.stage.adobe.com/channelpartners/drafts/automation/regression/public-page?georouting=off', | ||
tags: '@dme-smoke-test', | ||
basedURL: 'https://www.stage.adobe.com?akamaiLocale=us', | ||
data: { | ||
partnerLevel: 'cpp-emea-platinum:', | ||
expectedPublicPageURL: | ||
'https://partners.stage.adobe.com/emea/channelpartners/drafts/automation/regression/protected-home#', | ||
signInButtonInternationalText: 'Sign In', | ||
}, | ||
}, | ||
|
||
{ | ||
tcid: '7', | ||
name: '@user-redirection-jp-smoke-test', | ||
path: 'https://partners.stage.adobe.com/channelpartners/drafts/automation/regression/public-page?georouting=off', | ||
tags: '@dme-smoke-test', | ||
basedURL: 'https://www.stage.adobe.com?akamaiLocale=us', | ||
data: { | ||
partnerLevel: 'cpp-distributor-japan:', | ||
expectedPublicPageURL: | ||
'https://partners.stage.adobe.com/jp/channelpartners/drafts/automation/regression/protected-home#', | ||
signInButtonInternationalText: 'Sign In', | ||
}, | ||
}, | ||
|
||
{ | ||
tcid: '8', | ||
name: '@user-redirection-latam-smoke-test', | ||
path: 'https://partners.stage.adobe.com/channelpartners/drafts/automation/regression/public-page?georouting=off', | ||
tags: '@dme-smoke-test', | ||
basedURL: 'https://www.stage.adobe.com?akamaiLocale=us', | ||
data: { | ||
partnerLevel: 'cpp-latin-america-na-platinum:', | ||
expectedPublicPageURL: | ||
'https://partners.stage.adobe.com/latam/channelpartners/drafts/automation/regression/protected-home#', | ||
signInButtonInternationalText: 'Sign In', | ||
}, | ||
}, | ||
|
||
{ | ||
tcid: '9', | ||
name: '@announcement-page-validation-smoke-test', | ||
path: 'https://partners.stage.adobe.com/channelpartners/drafts/automation/regression/public-page?georouting=off', | ||
tags: '@dme-smoke-test', | ||
baseURL: 'https://www.stage.adobe.com?akamaiLocale=us', | ||
data: { | ||
partnerLevel: 'cpp-na-certified:', | ||
expectedPublicPageURL: | ||
'https://partners.stage.adobe.com/latam/channelpartners/drafts/automation/regression/protected-home#', | ||
signInButtonInternationalText: 'Sign In', | ||
}, | ||
}, | ||
], | ||
}; |
Oops, something went wrong.