mirror of
https://github.com/mosip/inji-wallet.git
synced 2026-01-10 14:07:59 -05:00
[INJIMOB-3328]: Update testIDs for Tooltip buttons (#1969)
* [INJIMOB-3328]: Update testIDs for Tooltip buttons Signed-off-by: BalachandarG <balachandar.g@thoughtworks.com> * [INJIMOB-3328]: Updating testID in automation package. Signed-off-by: BalachandarG <balachandar.g@thoughtworks.com> --------- Signed-off-by: BalachandarG <balachandar.g@thoughtworks.com>
This commit is contained in:
@@ -52,7 +52,7 @@ export const CopilotTooltip = () => {
|
||||
controller.CURRENT_STEP === KEY_MANAGEMENT_STEP ||
|
||||
(controller.isFinalStep && controller.isInitialDownloading) ? null : (
|
||||
<Button
|
||||
testID={`${controller.CURRENT_STEP}previous`}
|
||||
testID={'copilot-prev-action'}
|
||||
title={t('previous')}
|
||||
type="outline"
|
||||
styles={Theme.Styles.copilotButton}
|
||||
@@ -62,7 +62,7 @@ export const CopilotTooltip = () => {
|
||||
{controller.isLastStep ||
|
||||
controller.CURRENT_STEP === KEY_MANAGEMENT_STEP ? (
|
||||
<Button
|
||||
testID={`${controller.CURRENT_STEP}done`}
|
||||
testID={'copilot-next-action'}
|
||||
title={t('done')}
|
||||
type="gradient"
|
||||
styles={Theme.Styles.copilotButton}
|
||||
@@ -70,7 +70,7 @@ export const CopilotTooltip = () => {
|
||||
/>
|
||||
) : (
|
||||
<Button
|
||||
testID={`${controller.CURRENT_STEP}next`}
|
||||
testID={'copilot-next-action'}
|
||||
title={t('next')}
|
||||
type="gradient"
|
||||
styles={Theme.Styles.copilotButton}
|
||||
|
||||
@@ -153,49 +153,13 @@ public class HomePage extends BasePage {
|
||||
@iOSXCUITFindBy(accessibility = "verificationStatus")
|
||||
private WebElement verificationStatus;
|
||||
|
||||
@AndroidFindBy(accessibility = "1next")
|
||||
@iOSXCUITFindBy(accessibility = "1next")
|
||||
private WebElement firstNextButton;
|
||||
@AndroidFindBy(accessibility = "copilot-next-action")
|
||||
@iOSXCUITFindBy(accessibility = "copilot-next-action")
|
||||
private WebElement nextButton;
|
||||
|
||||
@AndroidFindBy(accessibility = "2next")
|
||||
@iOSXCUITFindBy(accessibility = "2next")
|
||||
private WebElement secondNextButton;
|
||||
|
||||
@AndroidFindBy(accessibility = "3next")
|
||||
@iOSXCUITFindBy(accessibility = "3next")
|
||||
private WebElement thirdNextButton;
|
||||
|
||||
@AndroidFindBy(accessibility = "4next")
|
||||
@iOSXCUITFindBy(accessibility = "4next")
|
||||
private WebElement forthNextButton;
|
||||
|
||||
@AndroidFindBy(accessibility = "5done")
|
||||
@iOSXCUITFindBy(accessibility = "5done")
|
||||
private WebElement fifthDoneButton;
|
||||
|
||||
@AndroidFindBy(accessibility = "5next")
|
||||
@iOSXCUITFindBy(accessibility = "5next")
|
||||
private WebElement fifthNextButton;
|
||||
|
||||
@AndroidFindBy(accessibility = "2previous")
|
||||
@iOSXCUITFindBy(accessibility = "2previous")
|
||||
private WebElement secondPreviousButton;
|
||||
|
||||
@AndroidFindBy(accessibility = "3previous")
|
||||
@iOSXCUITFindBy(accessibility = "3previous")
|
||||
private WebElement thirdPreviousButton;
|
||||
|
||||
@AndroidFindBy(accessibility = "4previous")
|
||||
@iOSXCUITFindBy(accessibility = "4previous")
|
||||
private WebElement forthPreviousButton;
|
||||
|
||||
@AndroidFindBy(accessibility = "5previous")
|
||||
@iOSXCUITFindBy(accessibility = "5previous")
|
||||
private WebElement fifthPreviousButton;
|
||||
|
||||
@AndroidFindBy(accessibility = "6done")
|
||||
@iOSXCUITFindBy(accessibility = "6done")
|
||||
private WebElement doneButton;
|
||||
@AndroidFindBy(accessibility = "copilot-prev-action")
|
||||
@iOSXCUITFindBy(accessibility = "copilot-prev-action")
|
||||
private WebElement previousButton;
|
||||
|
||||
@AndroidFindBy(accessibility = "helpTitle")
|
||||
@iOSXCUITFindBy(accessibility = "helpTitle")
|
||||
@@ -764,61 +728,28 @@ public class HomePage extends BasePage {
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
public void clickOnFirstNextButton() {
|
||||
clickOnElement(firstNextButton);
|
||||
}
|
||||
public void clickOnSecondNextButton() {
|
||||
clickOnElement(secondNextButton);
|
||||
}
|
||||
public void clickOnThirdNextButton() {
|
||||
clickOnElement(thirdNextButton);
|
||||
public void clickOnNextButton() {
|
||||
clickOnElement(nextButton);
|
||||
}
|
||||
|
||||
public void clickOnForthNextButton() {
|
||||
clickOnElement(forthNextButton);
|
||||
}
|
||||
|
||||
public void clickOnFifthDoneButton() {
|
||||
clickOnElement(fifthDoneButton);
|
||||
}
|
||||
|
||||
public void clickOnFifthNextButton() {
|
||||
clickOnElement(fifthNextButton);
|
||||
}
|
||||
public void clickOnFifthPreviousButton() {
|
||||
clickOnElement(fifthPreviousButton);
|
||||
}
|
||||
public void clickOnForthPreviousButton() {
|
||||
clickOnElement(forthPreviousButton);
|
||||
}
|
||||
|
||||
public void clickOnThirdPreviousButton() {
|
||||
clickOnElement(thirdPreviousButton);
|
||||
}
|
||||
|
||||
public void clickOnSecondPreviousButton() {
|
||||
clickOnElement(secondPreviousButton);
|
||||
public void clickOnPreviousButton() {
|
||||
clickOnElement(previousButton);
|
||||
}
|
||||
|
||||
public void clickOnDoneButton() {
|
||||
if(isElementDisplayed(doneButton))
|
||||
clickOnElement(doneButton);
|
||||
if(isElementDisplayed(nextButton))
|
||||
clickOnElement(nextButton);
|
||||
}
|
||||
|
||||
public void clickOnNextButtonForInjiTour() {
|
||||
if(isElementDisplayed(firstNextButton)) {
|
||||
clickOnElement(firstNextButton);
|
||||
clickOnElement(secondNextButton);
|
||||
clickOnElement(thirdNextButton);
|
||||
clickOnElement(forthNextButton);
|
||||
clickOnElement(fifthDoneButton);
|
||||
if(isElementDisplayed(nextButton)) {
|
||||
clickOnElement(nextButton);
|
||||
}
|
||||
}
|
||||
|
||||
public boolean isCredentialTypeValueDisplayed() {
|
||||
if(isElementDisplayed(doneButton)){
|
||||
clickOnElement(doneButton);
|
||||
if(isElementDisplayed(nextButton)){
|
||||
clickOnElement(nextButton);
|
||||
}
|
||||
return this.isElementDisplayed(credentialTypeValue);
|
||||
|
||||
|
||||
@@ -299,23 +299,23 @@ public class ChangeLanguageTest extends AndroidBaseTest {
|
||||
|
||||
assertTrue(homePage.verifyLanguageForHelpAndFrequentlyAskedQuationsHeaderDisplayed("Filipino"), "Verify if help and frequently asked quations header displayed");
|
||||
assertTrue(homePage.verifyLanguageForHelpAndFrequentlyAskedQuationsDescriptionDisplayed("Filipino"), "Verify if help and frequently asked quations description displayed");
|
||||
homePage.clickOnFirstNextButton();
|
||||
homePage.clickOnNextButton();
|
||||
|
||||
assertTrue(homePage.verifyLanguageForDownloadCardHeaderDisplayed("Filipino"), "Verify if download card header text displayed");
|
||||
assertTrue(homePage.verifyLanguageForDownloadCardDescriptionDisplayed("Filipino"), "Verify if download card description displayed");
|
||||
homePage.clickOnSecondNextButton();
|
||||
homePage.clickOnNextButton();
|
||||
|
||||
assertTrue(homePage.verifyLanguageForShareCardHeaderDisplayed("Filipino"), "Verify if share card header text displayed");
|
||||
assertTrue(homePage.verifyLanguageForShareCardDescriptionDisplayed("Filipino"), "Verify if share card description displayed");
|
||||
homePage.clickOnThirdNextButton();
|
||||
homePage.clickOnNextButton();
|
||||
|
||||
assertTrue(homePage.verifyLanguageForAccesstoHistoryHeaderDisplayed("Filipino"), "Verify if access to history header text displayed");
|
||||
assertTrue(homePage.verifyLanguageForaccesstoHistoryDescriptionDisplayed("Filipino"), "Verify if access to history description displayed");
|
||||
homePage.clickOnForthNextButton();
|
||||
homePage.clickOnNextButton();
|
||||
|
||||
assertTrue(homePage.verifyLanguageForAppSettingsHeaderDisplayed("Filipino"), "Verify if app settings header text displayed");
|
||||
assertTrue(homePage.verifyLanguageForAppSettingsDescriptionDisplayed("Filipino"), "Verify if app settings description displayed");
|
||||
homePage.clickOnFifthDoneButton();
|
||||
homePage.clickOnNextButton();
|
||||
assertEquals(homePage.getShareButton(), "Ibahagi");
|
||||
}
|
||||
|
||||
@@ -351,23 +351,23 @@ public class ChangeLanguageTest extends AndroidBaseTest {
|
||||
|
||||
assertTrue(homePage.verifyLanguageForHelpAndFrequentlyAskedQuationsHeaderDisplayed("Hindi"), "Verify if help and frequently asked quations header displayed");
|
||||
assertTrue(homePage.verifyLanguageForHelpAndFrequentlyAskedQuationsDescriptionDisplayed("Hindi"), "Verify if help and frequently asked quations description displayed");
|
||||
homePage.clickOnFirstNextButton();
|
||||
homePage.clickOnNextButton();
|
||||
|
||||
assertTrue(homePage.verifyLanguageForDownloadCardHeaderDisplayed("Hindi"), "Verify if download card header text displayed");
|
||||
assertTrue(homePage.verifyLanguageForDownloadCardDescriptionDisplayed("Hindi"), "Verify if download card description displayed");
|
||||
homePage.clickOnSecondNextButton();
|
||||
homePage.clickOnNextButton();
|
||||
|
||||
assertTrue(homePage.verifyLanguageForShareCardHeaderDisplayed("Hindi"), "Verify if share card header text displayed");
|
||||
assertTrue(homePage.verifyLanguageForShareCardDescriptionDisplayed("Hindi"), "Verify if share card description displayed");
|
||||
homePage.clickOnThirdNextButton();
|
||||
homePage.clickOnNextButton();
|
||||
|
||||
assertTrue(homePage.verifyLanguageForAccesstoHistoryHeaderDisplayed("Hindi"), "Verify if access to history header text displayed");
|
||||
assertTrue(homePage.verifyLanguageForaccesstoHistoryDescriptionDisplayed("Hindi"), "Verify if access to history description displayed");
|
||||
homePage.clickOnForthNextButton();
|
||||
homePage.clickOnNextButton();
|
||||
|
||||
assertTrue(homePage.verifyLanguageForAppSettingsHeaderDisplayed("Hindi"), "Verify if app settings header text displayed");
|
||||
assertTrue(homePage.verifyLanguageForAppSettingsDescriptionDisplayed("Hindi"), "Verify if app settings description displayed");
|
||||
homePage.clickOnFifthDoneButton();
|
||||
homePage.clickOnNextButton();
|
||||
assertEquals(homePage.getShareButton(), "शेयर करना");
|
||||
}
|
||||
|
||||
@@ -403,23 +403,23 @@ public class ChangeLanguageTest extends AndroidBaseTest {
|
||||
|
||||
assertTrue(homePage.verifyLanguageForHelpAndFrequentlyAskedQuationsHeaderDisplayed("Tamil"), "Verify if help and frequently asked quations header displayed");
|
||||
assertTrue(homePage.verifyLanguageForHelpAndFrequentlyAskedQuationsDescriptionDisplayed("Tamil"), "Verify if help and frequently asked quations description displayed");
|
||||
homePage.clickOnFirstNextButton();
|
||||
homePage.clickOnNextButton();
|
||||
|
||||
assertTrue(homePage.verifyLanguageForDownloadCardHeaderDisplayed("Tamil"), "Verify if download card header text displayed");
|
||||
assertTrue(homePage.verifyLanguageForDownloadCardDescriptionDisplayed("Tamil"), "Verify if download card description displayed");
|
||||
homePage.clickOnSecondNextButton();
|
||||
homePage.clickOnNextButton();
|
||||
|
||||
assertTrue(homePage.verifyLanguageForShareCardHeaderDisplayed("Tamil"), "Verify if share card header text displayed");
|
||||
assertTrue(homePage.verifyLanguageForShareCardDescriptionDisplayed("Tamil"), "Verify if share card description displayed");
|
||||
homePage.clickOnThirdNextButton();
|
||||
homePage.clickOnNextButton();
|
||||
|
||||
assertTrue(homePage.verifyLanguageForAccesstoHistoryHeaderDisplayed("Tamil"), "Verify if access to history header text displayed");
|
||||
assertTrue(homePage.verifyLanguageForaccesstoHistoryDescriptionDisplayed("Tamil"), "Verify if access to history description displayed");
|
||||
homePage.clickOnForthNextButton();
|
||||
homePage.clickOnNextButton();
|
||||
|
||||
assertTrue(homePage.verifyLanguageForAppSettingsHeaderDisplayed("Tamil"), "Verify if app settings header text displayed");
|
||||
assertTrue(homePage.verifyLanguageForAppSettingsDescriptionDisplayed("Tamil"), "Verify if app settings description displayed");
|
||||
homePage.clickOnFifthDoneButton();
|
||||
homePage.clickOnNextButton();
|
||||
assertEquals(homePage.getShareButton(), "பகிர்");
|
||||
}
|
||||
|
||||
@@ -455,23 +455,23 @@ public class ChangeLanguageTest extends AndroidBaseTest {
|
||||
|
||||
assertTrue(homePage.verifyLanguageForHelpAndFrequentlyAskedQuationsHeaderDisplayed("Kannada"), "Verify if help and frequently asked quations header displayed");
|
||||
assertTrue(homePage.verifyLanguageForHelpAndFrequentlyAskedQuationsDescriptionDisplayed("Kannada"), "Verify if help and frequently asked quations description displayed");
|
||||
homePage.clickOnFirstNextButton();
|
||||
homePage.clickOnNextButton();
|
||||
|
||||
assertTrue(homePage.verifyLanguageForDownloadCardHeaderDisplayed("Kannada"), "Verify if download card header text displayed");
|
||||
assertTrue(homePage.verifyLanguageForDownloadCardDescriptionDisplayed("Kannada"), "Verify if download card description displayed");
|
||||
homePage.clickOnSecondNextButton();
|
||||
homePage.clickOnNextButton();
|
||||
|
||||
assertTrue(homePage.verifyLanguageForShareCardHeaderDisplayed("Kannada"), "Verify if share card header text displayed");
|
||||
assertTrue(homePage.verifyLanguageForShareCardDescriptionDisplayed("Kannada"), "Verify if share card description displayed");
|
||||
homePage.clickOnThirdNextButton();
|
||||
homePage.clickOnNextButton();
|
||||
|
||||
assertTrue(homePage.verifyLanguageForAccesstoHistoryHeaderDisplayed("Kannada"), "Verify if access to history header text displayed");
|
||||
assertTrue(homePage.verifyLanguageForaccesstoHistoryDescriptionDisplayed("Kannada"), "Verify if access to history description displayed");
|
||||
homePage.clickOnForthNextButton();
|
||||
homePage.clickOnNextButton();
|
||||
|
||||
assertTrue(homePage.verifyLanguageForAppSettingsHeaderDisplayed("Kannada"), "Verify if app settings header text displayed");
|
||||
assertTrue(homePage.verifyLanguageForAppSettingsDescriptionDisplayed("Kannada"), "Verify if app settings description displayed");
|
||||
homePage.clickOnFifthDoneButton();
|
||||
homePage.clickOnNextButton();
|
||||
assertEquals(homePage.getShareButton(), "ಹಂಚಿಕೊಳ್ಳಿ");
|
||||
}
|
||||
|
||||
@@ -1114,4 +1114,4 @@ public class ChangeLanguageTest extends AndroidBaseTest {
|
||||
assertTrue(backupDataPage.getBackupDataPageDescription("Arabic"), "Protect your data with ease using our Backup & Restore feature. Safely store your VCs against loss or accidents by creating regular backups and recover it effortlessly whenever needed for seamless continuity.");
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -70,23 +70,23 @@ public class VerifyWelcomePagesTest extends AndroidBaseTest {
|
||||
|
||||
assertTrue(homePage.verifyLanguageForHelpAndFrequentlyAskedQuationsHeaderDisplayed("English"), "Verify if help and frequently asked quations header displayed");
|
||||
assertTrue(homePage.verifyLanguageForHelpAndFrequentlyAskedQuationsDescriptionDisplayed("English"), "Verify if help and frequently asked quations description displayed");
|
||||
homePage.clickOnFirstNextButton();
|
||||
homePage.clickOnNextButton();
|
||||
|
||||
assertTrue(homePage.verifyLanguageForDownloadCardHeaderDisplayed("English"), "Verify if download card header text displayed");
|
||||
assertTrue(homePage.verifyLanguageForDownloadCardDescriptionDisplayed("English"), "Verify if download card description displayed");
|
||||
homePage.clickOnSecondNextButton();
|
||||
homePage.clickOnNextButton();
|
||||
|
||||
assertTrue(homePage.verifyLanguageForShareCardHeaderDisplayed("English"), "Verify if share card header text displayed");
|
||||
assertTrue(homePage.verifyLanguageForShareCardDescriptionDisplayed("English"), "Verify if share card description displayed");
|
||||
homePage.clickOnThirdNextButton();
|
||||
homePage.clickOnNextButton();
|
||||
|
||||
assertTrue(homePage.verifyLanguageForAccesstoHistoryHeaderDisplayed("English"), "Verify if access to history header text displayed");
|
||||
assertTrue(homePage.verifyLanguageForaccesstoHistoryDescriptionDisplayed("English"), "Verify if access to history description displayed");
|
||||
homePage.clickOnForthNextButton();
|
||||
homePage.clickOnNextButton();
|
||||
|
||||
assertTrue(homePage.verifyLanguageForAppSettingsHeaderDisplayed("English"), "Verify if app settings header text displayed");
|
||||
assertTrue(homePage.verifyLanguageForAppSettingsDescriptionDisplayed("English"), "Verify if app settings description displayed");
|
||||
homePage.clickOnFifthDoneButton();
|
||||
homePage.clickOnNextButton();
|
||||
|
||||
assertTrue(homePage.isHomePageLoaded(), "Verify if home page is displayed");
|
||||
}
|
||||
@@ -119,35 +119,35 @@ public class VerifyWelcomePagesTest extends AndroidBaseTest {
|
||||
|
||||
assertTrue(homePage.verifyLanguageForHelpAndFrequentlyAskedQuationsHeaderDisplayed("English"), "Verify if help and frequently asked quations header displayed");
|
||||
assertTrue(homePage.verifyLanguageForHelpAndFrequentlyAskedQuationsDescriptionDisplayed("English"), "Verify if help and frequently asked quations description displayed");
|
||||
homePage.clickOnFirstNextButton();
|
||||
homePage.clickOnNextButton();
|
||||
|
||||
assertTrue(homePage.verifyLanguageForDownloadCardHeaderDisplayed("English"), "Verify if download card header text displayed");
|
||||
assertTrue(homePage.verifyLanguageForDownloadCardDescriptionDisplayed("English"), "Verify if download card description displayed");
|
||||
homePage.clickOnSecondNextButton();
|
||||
homePage.clickOnNextButton();
|
||||
|
||||
assertTrue(homePage.verifyLanguageForShareCardHeaderDisplayed("English"), "Verify if share card header text displayed");
|
||||
assertTrue(homePage.verifyLanguageForShareCardDescriptionDisplayed("English"), "Verify if share card description displayed");
|
||||
homePage.clickOnThirdNextButton();
|
||||
homePage.clickOnNextButton();
|
||||
|
||||
assertTrue(homePage.verifyLanguageForAccesstoHistoryHeaderDisplayed("English"), "Verify if access to history header text displayed");
|
||||
assertTrue(homePage.verifyLanguageForaccesstoHistoryDescriptionDisplayed("English"), "Verify if access to history description displayed");
|
||||
homePage.clickOnForthNextButton();
|
||||
homePage.clickOnNextButton();
|
||||
|
||||
assertTrue(homePage.verifyLanguageForAppSettingsHeaderDisplayed("English"), "Verify if app settings header text displayed");
|
||||
assertTrue(homePage.verifyLanguageForAppSettingsDescriptionDisplayed("English"), "Verify if app settings description displayed");
|
||||
homePage.clickOnFifthPreviousButton();
|
||||
homePage.clickOnPreviousButton();
|
||||
|
||||
assertTrue(homePage.verifyLanguageForAccesstoHistoryHeaderDisplayed("English"), "Verify if access to history header text displayed");
|
||||
assertTrue(homePage.verifyLanguageForaccesstoHistoryDescriptionDisplayed("English"), "Verify if access to history description displayed");
|
||||
homePage.clickOnForthPreviousButton();
|
||||
homePage.clickOnPreviousButton();
|
||||
|
||||
assertTrue(homePage.verifyLanguageForShareCardHeaderDisplayed("English"), "Verify if share card header text displayed");
|
||||
assertTrue(homePage.verifyLanguageForShareCardDescriptionDisplayed("English"), "Verify if share card description displayed");
|
||||
homePage.clickOnThirdPreviousButton();
|
||||
homePage.clickOnPreviousButton();
|
||||
|
||||
assertTrue(homePage.verifyLanguageForDownloadCardHeaderDisplayed("English"), "Verify if download card header text displayed");
|
||||
assertTrue(homePage.verifyLanguageForDownloadCardDescriptionDisplayed("English"), "Verify if download card description displayed");
|
||||
homePage.clickOnSecondPreviousButton();
|
||||
homePage.clickOnPreviousButton();
|
||||
|
||||
assertTrue(homePage.verifyLanguageForHelpAndFrequentlyAskedQuationsHeaderDisplayed("English"), "Verify if help and frequently asked quations header displayed");
|
||||
assertTrue(homePage.verifyLanguageForHelpAndFrequentlyAskedQuationsDescriptionDisplayed("English"), "Verify if help and frequently asked quations description displayed");
|
||||
@@ -185,4 +185,4 @@ public class VerifyWelcomePagesTest extends AndroidBaseTest {
|
||||
IosUtil.scrollToElement(driver,100,800,100,200);
|
||||
assertEquals(homePage.verifyLanguageForNoVCDownloadedPageLoaded(), "Bring your digital identity");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -301,23 +301,23 @@ public class ChangeLanguageTest extends IosBaseTest {
|
||||
|
||||
assertTrue(homePage.verifyLanguageForHelpAndFrequentlyAskedQuationsHeaderDisplayed("Filipino"), "Verify if help and frequently asked quations header displayed");
|
||||
assertTrue(homePage.verifyLanguageForHelpAndFrequentlyAskedQuationsDescriptionDisplayed("Filipino"), "Verify if help and frequently asked quations description displayed");
|
||||
homePage.clickOnFirstNextButton();
|
||||
homePage.clickOnNextButton();
|
||||
|
||||
assertTrue(homePage.verifyLanguageForDownloadCardHeaderDisplayed("Filipino"), "Verify if download card header text displayed");
|
||||
assertTrue(homePage.verifyLanguageForDownloadCardDescriptionDisplayed("Filipino"), "Verify if download card description displayed");
|
||||
homePage.clickOnSecondNextButton();
|
||||
homePage.clickOnNextButton();
|
||||
|
||||
assertTrue(homePage.verifyLanguageForShareCardHeaderDisplayed("Filipino"), "Verify if share card header text displayed");
|
||||
assertTrue(homePage.verifyLanguageForShareCardDescriptionDisplayed("Filipino"), "Verify if share card description displayed");
|
||||
homePage.clickOnThirdNextButton();
|
||||
homePage.clickOnNextButton();
|
||||
|
||||
assertTrue(homePage.verifyLanguageForAccesstoHistoryHeaderDisplayed("Filipino"), "Verify if access to history header text displayed");
|
||||
assertTrue(homePage.verifyLanguageForaccesstoHistoryDescriptionDisplayed("Filipino"), "Verify if access to history description displayed");
|
||||
homePage.clickOnForthNextButton();
|
||||
homePage.clickOnNextButton();
|
||||
|
||||
assertTrue(homePage.verifyLanguageForAppSettingsHeaderDisplayed("Filipino"), "Verify if app settings header text displayed");
|
||||
assertTrue(homePage.verifyLanguageForAppSettingsDescriptionDisplayed("Filipino"), "Verify if app settings description displayed");
|
||||
homePage.clickOnFifthDoneButton();
|
||||
homePage.clickOnNextButton();
|
||||
assertEquals(homePage.getShareButton(), "Ibahagi");
|
||||
}
|
||||
|
||||
@@ -353,23 +353,23 @@ public class ChangeLanguageTest extends IosBaseTest {
|
||||
|
||||
assertTrue(homePage.verifyLanguageForHelpAndFrequentlyAskedQuationsHeaderDisplayed("Hindi"), "Verify if help and frequently asked quations header displayed");
|
||||
assertTrue(homePage.verifyLanguageForHelpAndFrequentlyAskedQuationsDescriptionDisplayed("Hindi"), "Verify if help and frequently asked quations description displayed");
|
||||
homePage.clickOnFirstNextButton();
|
||||
homePage.clickOnNextButton();
|
||||
|
||||
assertTrue(homePage.verifyLanguageForDownloadCardHeaderDisplayed("Hindi"), "Verify if download card header text displayed");
|
||||
assertTrue(homePage.verifyLanguageForDownloadCardDescriptionDisplayed("Hindi"), "Verify if download card description displayed");
|
||||
homePage.clickOnSecondNextButton();
|
||||
homePage.clickOnNextButton();
|
||||
|
||||
assertTrue(homePage.verifyLanguageForShareCardHeaderDisplayed("Hindi"), "Verify if share card header text displayed");
|
||||
assertTrue(homePage.verifyLanguageForShareCardDescriptionDisplayed("Hindi"), "Verify if share card description displayed");
|
||||
homePage.clickOnThirdNextButton();
|
||||
homePage.clickOnNextButton();
|
||||
|
||||
assertTrue(homePage.verifyLanguageForAccesstoHistoryHeaderDisplayed("Hindi"), "Verify if access to history header text displayed");
|
||||
assertTrue(homePage.verifyLanguageForaccesstoHistoryDescriptionDisplayed("Hindi"), "Verify if access to history description displayed");
|
||||
homePage.clickOnForthNextButton();
|
||||
homePage.clickOnNextButton();
|
||||
|
||||
assertTrue(homePage.verifyLanguageForAppSettingsHeaderDisplayed("Hindi"), "Verify if app settings header text displayed");
|
||||
assertTrue(homePage.verifyLanguageForAppSettingsDescriptionDisplayed("Hindi"), "Verify if app settings description displayed");
|
||||
homePage.clickOnFifthDoneButton();
|
||||
homePage.clickOnNextButton();
|
||||
assertEquals(homePage.getShareButton(), "शेयर करना");
|
||||
}
|
||||
|
||||
@@ -405,23 +405,23 @@ public class ChangeLanguageTest extends IosBaseTest {
|
||||
|
||||
assertTrue(homePage.verifyLanguageForHelpAndFrequentlyAskedQuationsHeaderDisplayed("Tamil"), "Verify if help and frequently asked quations header displayed");
|
||||
assertTrue(homePage.verifyLanguageForHelpAndFrequentlyAskedQuationsDescriptionDisplayed("Tamil"), "Verify if help and frequently asked quations description displayed");
|
||||
homePage.clickOnFirstNextButton();
|
||||
homePage.clickOnNextButton();
|
||||
|
||||
assertTrue(homePage.verifyLanguageForDownloadCardHeaderDisplayed("Tamil"), "Verify if download card header text displayed");
|
||||
assertTrue(homePage.verifyLanguageForDownloadCardDescriptionDisplayed("Tamil"), "Verify if download card description displayed");
|
||||
homePage.clickOnSecondNextButton();
|
||||
homePage.clickOnNextButton();
|
||||
|
||||
assertTrue(homePage.verifyLanguageForShareCardHeaderDisplayed("Tamil"), "Verify if share card header text displayed");
|
||||
assertTrue(homePage.verifyLanguageForShareCardDescriptionDisplayed("Tamil"), "Verify if share card description displayed");
|
||||
homePage.clickOnThirdNextButton();
|
||||
homePage.clickOnNextButton();
|
||||
|
||||
assertTrue(homePage.verifyLanguageForAccesstoHistoryHeaderDisplayed("Tamil"), "Verify if access to history header text displayed");
|
||||
assertTrue(homePage.verifyLanguageForaccesstoHistoryDescriptionDisplayed("Tamil"), "Verify if access to history description displayed");
|
||||
homePage.clickOnForthNextButton();
|
||||
homePage.clickOnNextButton();
|
||||
|
||||
assertTrue(homePage.verifyLanguageForAppSettingsHeaderDisplayed("Tamil"), "Verify if app settings header text displayed");
|
||||
assertTrue(homePage.verifyLanguageForAppSettingsDescriptionDisplayed("Tamil"), "Verify if app settings description displayed");
|
||||
homePage.clickOnFifthDoneButton();
|
||||
homePage.clickOnNextButton();
|
||||
assertEquals(homePage.getShareButton(), "பகிர்");
|
||||
|
||||
}
|
||||
@@ -458,23 +458,23 @@ public class ChangeLanguageTest extends IosBaseTest {
|
||||
|
||||
assertTrue(homePage.verifyLanguageForHelpAndFrequentlyAskedQuationsHeaderDisplayed("Kannada"), "Verify if help and frequently asked quations header displayed");
|
||||
assertTrue(homePage.verifyLanguageForHelpAndFrequentlyAskedQuationsDescriptionDisplayed("Kannada"), "Verify if help and frequently asked quations description displayed");
|
||||
homePage.clickOnFirstNextButton();
|
||||
homePage.clickOnNextButton();
|
||||
|
||||
assertTrue(homePage.verifyLanguageForDownloadCardHeaderDisplayed("Kannada"), "Verify if download card header text displayed");
|
||||
assertTrue(homePage.verifyLanguageForDownloadCardDescriptionDisplayed("Kannada"), "Verify if download card description displayed");
|
||||
homePage.clickOnSecondNextButton();
|
||||
homePage.clickOnNextButton();
|
||||
|
||||
assertTrue(homePage.verifyLanguageForShareCardHeaderDisplayed("Kannada"), "Verify if share card header text displayed");
|
||||
assertTrue(homePage.verifyLanguageForShareCardDescriptionDisplayed("Kannada"), "Verify if share card description displayed");
|
||||
homePage.clickOnThirdNextButton();
|
||||
homePage.clickOnNextButton();
|
||||
|
||||
assertTrue(homePage.verifyLanguageForAccesstoHistoryHeaderDisplayed("Kannada"), "Verify if access to history header text displayed");
|
||||
assertTrue(homePage.verifyLanguageForaccesstoHistoryDescriptionDisplayed("Kannada"), "Verify if access to history description displayed");
|
||||
homePage.clickOnForthNextButton();
|
||||
homePage.clickOnNextButton();
|
||||
|
||||
assertTrue(homePage.verifyLanguageForAppSettingsHeaderDisplayed("Kannada"), "Verify if app settings header text displayed");
|
||||
assertTrue(homePage.verifyLanguageForAppSettingsDescriptionDisplayed("Kannada"), "Verify if app settings description displayed");
|
||||
homePage.clickOnFifthDoneButton();
|
||||
homePage.clickOnNextButton();
|
||||
assertEquals(homePage.getShareButton(), "ಹಂಚಿಕೊಳ್ಳಿ");
|
||||
}
|
||||
@Test
|
||||
@@ -951,23 +951,23 @@ public class ChangeLanguageTest extends IosBaseTest {
|
||||
|
||||
assertTrue(homePage.verifyLanguageForHelpAndFrequentlyAskedQuationsHeaderDisplayed("English"), "Verify if help and frequently asked quations header displayed");
|
||||
assertTrue(homePage.verifyLanguageForHelpAndFrequentlyAskedQuationsDescriptionDisplayed("English"), "Verify if help and frequently asked quations description displayed");
|
||||
homePage.clickOnFirstNextButton();
|
||||
homePage.clickOnNextButton();
|
||||
|
||||
assertTrue(homePage.verifyLanguageForDownloadCardHeaderDisplayed("English"), "Verify if download card header text displayed");
|
||||
assertTrue(homePage.verifyLanguageForDownloadCardDescriptionDisplayed("English"), "Verify if download card description displayed");
|
||||
homePage.clickOnSecondNextButton();
|
||||
homePage.clickOnNextButton();
|
||||
|
||||
assertTrue(homePage.verifyLanguageForShareCardHeaderDisplayed("English"), "Verify if share card header text displayed");
|
||||
assertTrue(homePage.verifyLanguageForShareCardDescriptionDisplayed("English"), "Verify if share card description displayed");
|
||||
homePage.clickOnThirdNextButton();
|
||||
homePage.clickOnNextButton();
|
||||
|
||||
assertTrue(homePage.verifyLanguageForAccesstoHistoryHeaderDisplayed("English"), "Verify if access to history header text displayed");
|
||||
assertTrue(homePage.verifyLanguageForaccesstoHistoryDescriptionDisplayed("English"), "Verify if access to history description displayed");
|
||||
homePage.clickOnForthNextButton();
|
||||
homePage.clickOnNextButton();
|
||||
|
||||
assertTrue(homePage.verifyLanguageForAppSettingsHeaderDisplayed("English"), "Verify if app settings header text displayed");
|
||||
assertTrue(homePage.verifyLanguageForAppSettingsDescriptionDisplayed("English"), "Verify if app settings description displayed");
|
||||
homePage.clickOnFifthDoneButton();
|
||||
homePage.clickOnNextButton();
|
||||
homePage.clickOnNextButtonForInjiTour();
|
||||
assertTrue(homePage.isHomePageLoaded(), "Verify if home page is displayed");
|
||||
|
||||
@@ -1001,23 +1001,23 @@ public class ChangeLanguageTest extends IosBaseTest {
|
||||
|
||||
assertTrue(homePage.verifyLanguageForHelpAndFrequentlyAskedQuationsHeaderDisplayed("Hindi"), "Verify if help and frequently asked quations header displayed");
|
||||
assertTrue(homePage.verifyLanguageForHelpAndFrequentlyAskedQuationsDescriptionDisplayed("Hindi"), "Verify if help and frequently asked quations description displayed");
|
||||
homePage.clickOnFirstNextButton();
|
||||
homePage.clickOnNextButton();
|
||||
|
||||
assertTrue(homePage.verifyLanguageForDownloadCardHeaderDisplayed("Hindi"), "Verify if download card header text displayed");
|
||||
assertTrue(homePage.verifyLanguageForDownloadCardDescriptionDisplayed("Hindi"), "Verify if download card description displayed");
|
||||
homePage.clickOnSecondNextButton();
|
||||
homePage.clickOnNextButton();
|
||||
|
||||
assertTrue(homePage.verifyLanguageForShareCardHeaderDisplayed("Hindi"), "Verify if share card header text displayed");
|
||||
assertTrue(homePage.verifyLanguageForShareCardDescriptionDisplayed("Hindi"), "Verify if share card description displayed");
|
||||
homePage.clickOnThirdNextButton();
|
||||
homePage.clickOnNextButton();
|
||||
|
||||
assertTrue(homePage.verifyLanguageForAccesstoHistoryHeaderDisplayed("Hindi"), "Verify if access to history header text displayed");
|
||||
assertTrue(homePage.verifyLanguageForaccesstoHistoryDescriptionDisplayed("Hindi"), "Verify if access to history description displayed");
|
||||
homePage.clickOnForthNextButton();
|
||||
homePage.clickOnNextButton();
|
||||
|
||||
assertTrue(homePage.verifyLanguageForAppSettingsHeaderDisplayed("Hindi"), "Verify if app settings header text displayed");
|
||||
assertTrue(homePage.verifyLanguageForAppSettingsDescriptionDisplayed("Hindi"), "Verify if app settings description displayed");
|
||||
homePage.clickOnFifthDoneButton();
|
||||
homePage.clickOnNextButton();
|
||||
homePage.clickOnNextButtonForInjiTour();
|
||||
assertTrue(homePage.isHomePageLoaded(), "Verify if home page is displayed");
|
||||
|
||||
@@ -1051,23 +1051,23 @@ public class ChangeLanguageTest extends IosBaseTest {
|
||||
|
||||
assertTrue(homePage.verifyLanguageForHelpAndFrequentlyAskedQuationsHeaderDisplayed("Kannada"), "Verify if help and frequently asked quations header displayed");
|
||||
assertTrue(homePage.verifyLanguageForHelpAndFrequentlyAskedQuationsDescriptionDisplayed("Kannada"), "Verify if help and frequently asked quations description displayed");
|
||||
homePage.clickOnFirstNextButton();
|
||||
homePage.clickOnNextButton();
|
||||
|
||||
assertTrue(homePage.verifyLanguageForDownloadCardHeaderDisplayed("Kannada"), "Verify if download card header text displayed");
|
||||
assertTrue(homePage.verifyLanguageForDownloadCardDescriptionDisplayed("Kannada"), "Verify if download card description displayed");
|
||||
homePage.clickOnSecondNextButton();
|
||||
homePage.clickOnNextButton();
|
||||
|
||||
assertTrue(homePage.verifyLanguageForShareCardHeaderDisplayed("Kannada"), "Verify if share card header text displayed");
|
||||
assertTrue(homePage.verifyLanguageForShareCardDescriptionDisplayed("Kannada"), "Verify if share card description displayed");
|
||||
homePage.clickOnThirdNextButton();
|
||||
homePage.clickOnNextButton();
|
||||
|
||||
assertTrue(homePage.verifyLanguageForAccesstoHistoryHeaderDisplayed("Kannada"), "Verify if access to history header text displayed");
|
||||
assertTrue(homePage.verifyLanguageForaccesstoHistoryDescriptionDisplayed("Kannada"), "Verify if access to history description displayed");
|
||||
homePage.clickOnForthNextButton();
|
||||
homePage.clickOnNextButton();
|
||||
|
||||
assertTrue(homePage.verifyLanguageForAppSettingsHeaderDisplayed("Kannada"), "Verify if app settings header text displayed");
|
||||
assertTrue(homePage.verifyLanguageForAppSettingsDescriptionDisplayed("Kannada"), "Verify if app settings description displayed");
|
||||
homePage.clickOnFifthDoneButton();
|
||||
homePage.clickOnNextButton();
|
||||
homePage.clickOnNextButtonForInjiTour();
|
||||
assertTrue(homePage.isHomePageLoaded(), "Verify if home page is displayed");
|
||||
|
||||
@@ -1101,23 +1101,23 @@ public class ChangeLanguageTest extends IosBaseTest {
|
||||
|
||||
assertTrue(homePage.verifyLanguageForHelpAndFrequentlyAskedQuationsHeaderDisplayed("Tamil"), "Verify if help and frequently asked quations header displayed");
|
||||
assertTrue(homePage.verifyLanguageForHelpAndFrequentlyAskedQuationsDescriptionDisplayed("Tamil"), "Verify if help and frequently asked quations description displayed");
|
||||
homePage.clickOnFirstNextButton();
|
||||
homePage.clickOnNextButton();
|
||||
|
||||
assertTrue(homePage.verifyLanguageForDownloadCardHeaderDisplayed("Tamil"), "Verify if download card header text displayed");
|
||||
assertTrue(homePage.verifyLanguageForDownloadCardDescriptionDisplayed("Tamil"), "Verify if download card description displayed");
|
||||
homePage.clickOnSecondNextButton();
|
||||
homePage.clickOnNextButton();
|
||||
|
||||
assertTrue(homePage.verifyLanguageForShareCardHeaderDisplayed("Tamil"), "Verify if share card header text displayed");
|
||||
assertTrue(homePage.verifyLanguageForShareCardDescriptionDisplayed("Tamil"), "Verify if share card description displayed");
|
||||
homePage.clickOnThirdNextButton();
|
||||
homePage.clickOnNextButton();
|
||||
|
||||
assertTrue(homePage.verifyLanguageForAccesstoHistoryHeaderDisplayed("Tamil"), "Verify if access to history header text displayed");
|
||||
assertTrue(homePage.verifyLanguageForaccesstoHistoryDescriptionDisplayed("Tamil"), "Verify if access to history description displayed");
|
||||
homePage.clickOnForthNextButton();
|
||||
homePage.clickOnNextButton();
|
||||
|
||||
assertTrue(homePage.verifyLanguageForAppSettingsHeaderDisplayed("Tamil"), "Verify if app settings header text displayed");
|
||||
assertTrue(homePage.verifyLanguageForAppSettingsDescriptionDisplayed("Tamil"), "Verify if app settings description displayed");
|
||||
homePage.clickOnFifthDoneButton();
|
||||
homePage.clickOnNextButton();
|
||||
homePage.clickOnNextButtonForInjiTour();
|
||||
assertTrue(homePage.isHomePageLoaded(), "Verify if home page is displayed");
|
||||
|
||||
@@ -1151,23 +1151,23 @@ public class ChangeLanguageTest extends IosBaseTest {
|
||||
|
||||
assertTrue(homePage.verifyLanguageForHelpAndFrequentlyAskedQuationsHeaderDisplayed("Filipino"), "Verify if help and frequently asked quations header displayed");
|
||||
assertTrue(homePage.verifyLanguageForHelpAndFrequentlyAskedQuationsDescriptionDisplayed("Filipino"), "Verify if help and frequently asked quations description displayed");
|
||||
homePage.clickOnFirstNextButton();
|
||||
homePage.clickOnNextButton();
|
||||
|
||||
assertTrue(homePage.verifyLanguageForDownloadCardHeaderDisplayed("Filipino"), "Verify if download card header text displayed");
|
||||
assertTrue(homePage.verifyLanguageForDownloadCardDescriptionDisplayed("Filipino"), "Verify if download card description displayed");
|
||||
homePage.clickOnSecondNextButton();
|
||||
homePage.clickOnNextButton();
|
||||
|
||||
assertTrue(homePage.verifyLanguageForShareCardHeaderDisplayed("Filipino"), "Verify if share card header text displayed");
|
||||
assertTrue(homePage.verifyLanguageForShareCardDescriptionDisplayed("Filipino"), "Verify if share card description displayed");
|
||||
homePage.clickOnThirdNextButton();
|
||||
homePage.clickOnNextButton();
|
||||
|
||||
assertTrue(homePage.verifyLanguageForAccesstoHistoryHeaderDisplayed("Filipino"), "Verify if access to history header text displayed");
|
||||
assertTrue(homePage.verifyLanguageForaccesstoHistoryDescriptionDisplayed("Filipino"), "Verify if access to history description displayed");
|
||||
homePage.clickOnForthNextButton();
|
||||
homePage.clickOnNextButton();
|
||||
|
||||
assertTrue(homePage.verifyLanguageForAppSettingsHeaderDisplayed("Filipino"), "Verify if app settings header text displayed");
|
||||
assertTrue(homePage.verifyLanguageForAppSettingsDescriptionDisplayed("Filipino"), "Verify if app settings description displayed");
|
||||
homePage.clickOnFifthDoneButton();
|
||||
homePage.clickOnNextButton();
|
||||
homePage.clickOnNextButtonForInjiTour();
|
||||
assertTrue(homePage.isHomePageLoaded(), "Verify if home page is displayed");
|
||||
|
||||
@@ -1201,25 +1201,25 @@ public class ChangeLanguageTest extends IosBaseTest {
|
||||
|
||||
assertTrue(homePage.verifyLanguageForHelpAndFrequentlyAskedQuationsHeaderDisplayed("Arabic"), "Verify if help and frequently asked quations header displayed");
|
||||
assertTrue(homePage.verifyLanguageForHelpAndFrequentlyAskedQuationsDescriptionDisplayed("Arabic"), "Verify if help and frequently asked quations description displayed");
|
||||
homePage.clickOnFirstNextButton();
|
||||
homePage.clickOnNextButton();
|
||||
|
||||
assertTrue(homePage.verifyLanguageForDownloadCardHeaderDisplayed("Arabic"), "Verify if download card header text displayed");
|
||||
assertTrue(homePage.verifyLanguageForDownloadCardDescriptionDisplayed("Arabic"), "Verify if download card description displayed");
|
||||
homePage.clickOnSecondNextButton();
|
||||
homePage.clickOnNextButton();
|
||||
|
||||
assertTrue(homePage.verifyLanguageForShareCardHeaderDisplayed("Arabic"), "Verify if share card header text displayed");
|
||||
assertTrue(homePage.verifyLanguageForShareCardDescriptionDisplayed("Arabic"), "Verify if share card description displayed");
|
||||
homePage.clickOnThirdNextButton();
|
||||
homePage.clickOnNextButton();
|
||||
|
||||
assertTrue(homePage.verifyLanguageForAccesstoHistoryHeaderDisplayed("Arabic"), "Verify if access to history header text displayed");
|
||||
assertTrue(homePage.verifyLanguageForaccesstoHistoryDescriptionDisplayed("Arabic"), "Verify if access to history description displayed");
|
||||
homePage.clickOnForthNextButton();
|
||||
homePage.clickOnNextButton();
|
||||
|
||||
assertTrue(homePage.verifyLanguageForAppSettingsHeaderDisplayed("Arabic"), "Verify if app settings header text displayed");
|
||||
assertTrue(homePage.verifyLanguageForAppSettingsDescriptionDisplayed("Arabic"), "Verify if app settings description displayed");
|
||||
homePage.clickOnFifthDoneButton();
|
||||
homePage.clickOnNextButton();
|
||||
homePage.clickOnNextButtonForInjiTour();
|
||||
assertTrue(homePage.isHomePageLoaded(), "Verify if home page is displayed");
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -71,23 +71,23 @@ public class VerifyWelcomePagesTest extends IosBaseTest {
|
||||
|
||||
assertTrue(homePage.verifyLanguageForHelpAndFrequentlyAskedQuationsHeaderDisplayed("English"), "Verify if help and frequently asked quations header displayed");
|
||||
assertTrue(homePage.verifyLanguageForHelpAndFrequentlyAskedQuationsDescriptionDisplayed("English"), "Verify if help and frequently asked quations description displayed");
|
||||
homePage.clickOnFirstNextButton();
|
||||
homePage.clickOnNextButton();
|
||||
|
||||
assertTrue(homePage.verifyLanguageForDownloadCardHeaderDisplayed("English"), "Verify if download card header text displayed");
|
||||
assertTrue(homePage.verifyLanguageForDownloadCardDescriptionDisplayed("English"), "Verify if download card description displayed");
|
||||
homePage.clickOnSecondNextButton();
|
||||
homePage.clickOnNextButton();
|
||||
|
||||
assertTrue(homePage.verifyLanguageForShareCardHeaderDisplayed("English"), "Verify if share card header text displayed");
|
||||
assertTrue(homePage.verifyLanguageForShareCardDescriptionDisplayed("English"), "Verify if share card description displayed");
|
||||
homePage.clickOnThirdNextButton();
|
||||
homePage.clickOnNextButton();
|
||||
|
||||
assertTrue(homePage.verifyLanguageForAccesstoHistoryHeaderDisplayed("English"), "Verify if access to history header text displayed");
|
||||
assertTrue(homePage.verifyLanguageForaccesstoHistoryDescriptionDisplayed("English"), "Verify if access to history description displayed");
|
||||
homePage.clickOnForthNextButton();
|
||||
homePage.clickOnNextButton();
|
||||
|
||||
assertTrue(homePage.verifyLanguageForAppSettingsHeaderDisplayed("English"), "Verify if app settings header text displayed");
|
||||
assertTrue(homePage.verifyLanguageForAppSettingsDescriptionDisplayed("English"), "Verify if app settings description displayed");
|
||||
homePage.clickOnFifthDoneButton();
|
||||
homePage.clickOnNextButton();
|
||||
homePage.clickOnNextButtonForInjiTour();
|
||||
assertTrue(homePage.isHomePageLoaded(), "Verify if home page is displayed");
|
||||
|
||||
@@ -121,35 +121,35 @@ public class VerifyWelcomePagesTest extends IosBaseTest {
|
||||
|
||||
assertTrue(homePage.verifyLanguageForHelpAndFrequentlyAskedQuationsHeaderDisplayed("English"), "Verify if help and frequently asked quations header displayed");
|
||||
assertTrue(homePage.verifyLanguageForHelpAndFrequentlyAskedQuationsDescriptionDisplayed("English"), "Verify if help and frequently asked quations description displayed");
|
||||
homePage.clickOnFirstNextButton();
|
||||
homePage.clickOnNextButton();
|
||||
|
||||
assertTrue(homePage.verifyLanguageForDownloadCardHeaderDisplayed("English"), "Verify if download card header text displayed");
|
||||
assertTrue(homePage.verifyLanguageForDownloadCardDescriptionDisplayed("English"), "Verify if download card description displayed");
|
||||
homePage.clickOnSecondNextButton();
|
||||
homePage.clickOnNextButton();
|
||||
|
||||
assertTrue(homePage.verifyLanguageForShareCardHeaderDisplayed("English"), "Verify if share card header text displayed");
|
||||
assertTrue(homePage.verifyLanguageForShareCardDescriptionDisplayed("English"), "Verify if share card description displayed");
|
||||
homePage.clickOnThirdNextButton();
|
||||
homePage.clickOnNextButton();
|
||||
|
||||
assertTrue(homePage.verifyLanguageForAccesstoHistoryHeaderDisplayed("English"), "Verify if access to history header text displayed");
|
||||
assertTrue(homePage.verifyLanguageForaccesstoHistoryDescriptionDisplayed("English"), "Verify if access to history description displayed");
|
||||
homePage.clickOnForthNextButton();
|
||||
homePage.clickOnNextButton();
|
||||
|
||||
assertTrue(homePage.verifyLanguageForAppSettingsHeaderDisplayed("English"), "Verify if app settings header text displayed");
|
||||
assertTrue(homePage.verifyLanguageForAppSettingsDescriptionDisplayed("English"), "Verify if app settings description displayed");
|
||||
homePage.clickOnFifthPreviousButton();
|
||||
homePage.clickOnPreviousButton();
|
||||
|
||||
assertTrue(homePage.verifyLanguageForAccesstoHistoryHeaderDisplayed("English"), "Verify if access to history header text displayed");
|
||||
assertTrue(homePage.verifyLanguageForaccesstoHistoryDescriptionDisplayed("English"), "Verify if access to history description displayed");
|
||||
homePage.clickOnForthPreviousButton();
|
||||
homePage.clickOnPreviousButton();
|
||||
|
||||
assertTrue(homePage.verifyLanguageForShareCardHeaderDisplayed("English"), "Verify if share card header text displayed");
|
||||
assertTrue(homePage.verifyLanguageForShareCardDescriptionDisplayed("English"), "Verify if share card description displayed");
|
||||
homePage.clickOnThirdPreviousButton();
|
||||
homePage.clickOnPreviousButton();
|
||||
|
||||
assertTrue(homePage.verifyLanguageForDownloadCardHeaderDisplayed("English"), "Verify if download card header text displayed");
|
||||
assertTrue(homePage.verifyLanguageForDownloadCardDescriptionDisplayed("English"), "Verify if download card description displayed");
|
||||
homePage.clickOnSecondPreviousButton();
|
||||
homePage.clickOnPreviousButton();
|
||||
|
||||
assertTrue(homePage.verifyLanguageForHelpAndFrequentlyAskedQuationsHeaderDisplayed("English"), "Verify if help and frequently asked quations header displayed");
|
||||
assertTrue(homePage.verifyLanguageForHelpAndFrequentlyAskedQuationsDescriptionDisplayed("English"), "Verify if help and frequently asked quations description displayed");
|
||||
@@ -235,23 +235,23 @@ public class VerifyWelcomePagesTest extends IosBaseTest {
|
||||
|
||||
assertTrue(homePage.verifyLanguageForHelpAndFrequentlyAskedQuationsHeaderDisplayed("English"), "Verify if help and frequently asked quations header displayed");
|
||||
assertTrue(homePage.verifyLanguageForHelpAndFrequentlyAskedQuationsDescriptionDisplayed("English"), "Verify if help and frequently asked quations description displayed");
|
||||
homePage.clickOnFirstNextButton();
|
||||
homePage.clickOnNextButton();
|
||||
|
||||
assertTrue(homePage.verifyLanguageForDownloadCardHeaderDisplayed("English"), "Verify if download card header text displayed");
|
||||
assertTrue(homePage.verifyLanguageForDownloadCardDescriptionDisplayed("English"), "Verify if download card description displayed");
|
||||
homePage.clickOnSecondNextButton();
|
||||
homePage.clickOnNextButton();
|
||||
|
||||
assertTrue(homePage.verifyLanguageForShareCardHeaderDisplayed("English"), "Verify if share card header text displayed");
|
||||
assertTrue(homePage.verifyLanguageForShareCardDescriptionDisplayed("English"), "Verify if share card description displayed");
|
||||
homePage.clickOnThirdNextButton();
|
||||
homePage.clickOnNextButton();
|
||||
|
||||
assertTrue(homePage.verifyLanguageForAccesstoHistoryHeaderDisplayed("English"), "Verify if access to history header text displayed");
|
||||
assertTrue(homePage.verifyLanguageForaccesstoHistoryDescriptionDisplayed("English"), "Verify if access to history description displayed");
|
||||
homePage.clickOnForthNextButton();
|
||||
homePage.clickOnNextButton();
|
||||
|
||||
assertTrue(homePage.verifyLanguageForAppSettingsHeaderDisplayed("English"), "Verify if app settings header text displayed");
|
||||
assertTrue(homePage.verifyLanguageForAppSettingsDescriptionDisplayed("English"), "Verify if app settings description displayed");
|
||||
homePage.clickOnFifthNextButton();
|
||||
homePage.clickOnNextButton();
|
||||
|
||||
assertTrue(homePage.verifyLanguageForCardViewTitleDisplayed("English"), "Verify if card header text displayed");
|
||||
assertTrue(homePage.verifyLanguageForCardViewDescriptionDisplayed("English"), "Verify if card description displayed");
|
||||
@@ -280,19 +280,19 @@ public class VerifyWelcomePagesTest extends IosBaseTest {
|
||||
|
||||
assertTrue(homePage.verifyLanguageForHelpAndFrequentlyAskedQuationsHeaderDisplayed("English"), "Verify if help and frequently asked quations header displayed");
|
||||
assertTrue(homePage.verifyLanguageForHelpAndFrequentlyAskedQuationsDescriptionDisplayed("English"), "Verify if help and frequently asked quations description displayed");
|
||||
homePage.clickOnFirstNextButton();
|
||||
homePage.clickOnNextButton();
|
||||
|
||||
assertTrue(homePage.verifyLanguageForDownloadCardHeaderDisplayed("English"), "Verify if download card header text displayed");
|
||||
assertTrue(homePage.verifyLanguageForDownloadCardDescriptionDisplayed("English"), "Verify if download card description displayed");
|
||||
homePage.clickOnSecondNextButton();
|
||||
homePage.clickOnNextButton();
|
||||
|
||||
assertTrue(homePage.verifyLanguageForShareCardHeaderDisplayed("English"), "Verify if share card header text displayed");
|
||||
assertTrue(homePage.verifyLanguageForShareCardDescriptionDisplayed("English"), "Verify if share card description displayed");
|
||||
homePage.clickOnThirdNextButton();
|
||||
homePage.clickOnNextButton();
|
||||
|
||||
assertTrue(homePage.verifyLanguageForAccesstoHistoryHeaderDisplayed("English"), "Verify if access to history header text displayed");
|
||||
assertTrue(homePage.verifyLanguageForaccesstoHistoryDescriptionDisplayed("English"), "Verify if access to history description displayed");
|
||||
homePage.clickOnForthNextButton();
|
||||
homePage.clickOnNextButton();
|
||||
|
||||
assertTrue(homePage.verifyLanguageForAppSettingsHeaderDisplayed("English"), "Verify if app settings header text displayed");
|
||||
assertTrue(homePage.verifyLanguageForAppSettingsDescriptionDisplayed("English"), "Verify if app settings description displayed");
|
||||
@@ -355,23 +355,23 @@ public class VerifyWelcomePagesTest extends IosBaseTest {
|
||||
|
||||
assertTrue(homePage.verifyLanguageForHelpAndFrequentlyAskedQuationsHeaderDisplayed("English"), "Verify if help and frequently asked quations header displayed");
|
||||
assertTrue(homePage.verifyLanguageForHelpAndFrequentlyAskedQuationsDescriptionDisplayed("English"), "Verify if help and frequently asked quations description displayed");
|
||||
homePage.clickOnFirstNextButton();
|
||||
homePage.clickOnNextButton();
|
||||
|
||||
assertTrue(homePage.verifyLanguageForDownloadCardHeaderDisplayed("English"), "Verify if download card header text displayed");
|
||||
assertTrue(homePage.verifyLanguageForDownloadCardDescriptionDisplayed("English"), "Verify if download card description displayed");
|
||||
homePage.clickOnSecondNextButton();
|
||||
homePage.clickOnNextButton();
|
||||
|
||||
assertTrue(homePage.verifyLanguageForShareCardHeaderDisplayed("English"), "Verify if share card header text displayed");
|
||||
assertTrue(homePage.verifyLanguageForShareCardDescriptionDisplayed("English"), "Verify if share card description displayed");
|
||||
homePage.clickOnThirdNextButton();
|
||||
homePage.clickOnNextButton();
|
||||
|
||||
assertTrue(homePage.verifyLanguageForAccesstoHistoryHeaderDisplayed("English"), "Verify if access to history header text displayed");
|
||||
assertTrue(homePage.verifyLanguageForaccesstoHistoryDescriptionDisplayed("English"), "Verify if access to history description displayed");
|
||||
homePage.clickOnForthNextButton();
|
||||
homePage.clickOnNextButton();
|
||||
|
||||
assertTrue(homePage.verifyLanguageForAppSettingsHeaderDisplayed("English"), "Verify if app settings header text displayed");
|
||||
assertTrue(homePage.verifyLanguageForAppSettingsDescriptionDisplayed("English"), "Verify if app settings description displayed");
|
||||
homePage.clickOnFifthNextButton();
|
||||
homePage.clickOnNextButton();
|
||||
|
||||
assertTrue(homePage.verifyLanguageForCardViewTitleDisplayed("English"), "Verify if card header text displayed");
|
||||
assertTrue(homePage.verifyLanguageForCardViewDescriptionDisplayed("English"), "Verify if card description displayed");
|
||||
@@ -401,24 +401,24 @@ public class VerifyWelcomePagesTest extends IosBaseTest {
|
||||
|
||||
assertTrue(homePage.verifyLanguageForHelpAndFrequentlyAskedQuationsHeaderDisplayed("English"), "Verify if help and frequently asked quations header displayed");
|
||||
assertTrue(homePage.verifyLanguageForHelpAndFrequentlyAskedQuationsDescriptionDisplayed("English"), "Verify if help and frequently asked quations description displayed");
|
||||
homePage.clickOnFirstNextButton();
|
||||
homePage.clickOnNextButton();
|
||||
|
||||
assertTrue(homePage.verifyLanguageForDownloadCardHeaderDisplayed("English"), "Verify if download card header text displayed");
|
||||
assertTrue(homePage.verifyLanguageForDownloadCardDescriptionDisplayed("English"), "Verify if download card description displayed");
|
||||
homePage.clickOnSecondNextButton();
|
||||
homePage.clickOnNextButton();
|
||||
|
||||
assertTrue(homePage.verifyLanguageForShareCardHeaderDisplayed("English"), "Verify if share card header text displayed");
|
||||
assertTrue(homePage.verifyLanguageForShareCardDescriptionDisplayed("English"), "Verify if share card description displayed");
|
||||
homePage.clickOnThirdNextButton();
|
||||
homePage.clickOnNextButton();
|
||||
|
||||
assertTrue(homePage.verifyLanguageForAccesstoHistoryHeaderDisplayed("English"), "Verify if access to history header text displayed");
|
||||
assertTrue(homePage.verifyLanguageForaccesstoHistoryDescriptionDisplayed("English"), "Verify if access to history description displayed");
|
||||
homePage.clickOnForthNextButton();
|
||||
homePage.clickOnNextButton();
|
||||
|
||||
assertTrue(homePage.verifyLanguageForAppSettingsHeaderDisplayed("English"), "Verify if app settings header text displayed");
|
||||
assertTrue(homePage.verifyLanguageForAppSettingsDescriptionDisplayed("English"), "Verify if app settings description displayed");
|
||||
homePage.clickOnFifthDoneButton();
|
||||
homePage.clickOnNextButton();
|
||||
|
||||
assertTrue(homePage.isHomePageLoaded(), "Verify if home page is displayed");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user