Exemplo n.º 1
0
        public void SwitchingBetweenViewsOnOngoingandSoldDeals()
        {
            try
            {
                test = extent.CreateTest("SwitchingBetweenViewsOnOngoingandSoldDeals").Info("Test Started");
                IMTRLandingPage    imtr       = new IMTRLandingPage(BaseTest.driver);
                NavigationMenuPage navigation = new NavigationMenuPage(BaseTest.driver);
                navigation.ClickMainMenu();
                navigation.ClickTrackRecordOption();

                //Verify change view works for ongoing deals
                imtr.ClickOngoingDeals();
                Thread.Sleep(2000);
                Boolean lview = imtr.ChangeToListView();
                Assert.IsTrue(lview == true, "List View is not displayed");

                //Verify change view works for sold deals
                Thread.Sleep(3000);
                imtr.ClickSoldDeals();
                Boolean cview = imtr.ChangeToCardView();
                Assert.IsTrue(cview == true, "card View is not displayed");
                test.Log(Status.Pass, "Test Case Passed");
            }
            catch (Exception e)
            {
                test.Log(Status.Fail, "Test Case Failed");
                baseTest.TakeScreenshot();
                Console.WriteLine(e.StackTrace);
                driver.Quit();
            }
        }
 public void MaximizeAndMinimizeForAllSection()
 {
     try
     {
         test = extent.CreateTest("MaximizeAndMinimizeForAllSection").Info("Test Started");
         IMTRLandingPage         imtr            = new IMTRLandingPage(BaseTest.driver);
         IMTRPropertyDetailsPage imtrPropdetails = new IMTRPropertyDetailsPage(BaseTest.driver);
         imtr.ClickTrackRecordOnInMenu();
         Thread.Sleep(3000);
         imtr.ClickOngoingDeals();
         imtr.NavigateToIMTRPropDetail();
         imtrPropdetails.Capitalization_MaximizeMinimize();
         imtrPropdetails.Investor_MaximizeMinimize();
         imtrPropdetails.SponsorEquity_MaximizeMinimize();
         imtrPropdetails.ThirdParty_MaximizeMinimize();
         imtrPropdetails.PurchasePrice_MaximizeMinimize();
         Boolean res = imtrPropdetails.GeneralInfo_MaximizeMinimize();
         Assert.True(res == true, "Maximize minimize does not work");
         test.Log(Status.Pass, "Test Case Passed");
     }
     catch (Exception e)
     {
         test.Log(Status.Fail, "Test Case Failed");
         baseTest.TakeScreenshot();
         Console.WriteLine(e.StackTrace);
     }
 }
        public void VerifyPropertyStatusOngoingToSold()
        {
            try
            {
                test = extent.CreateTest("VerifyPropertyStatusOngoingToSold").Info("Test Started");
                NavigationMenuPage navigation = new NavigationMenuPage(BaseTest.driver);
                IMTRLandingPage    imtr       = new IMTRLandingPage(BaseTest.driver);
                navigation.ClickMainMenu();
                navigation.ClickTrackRecordOption();
                imtr.ClickOngoingDeals();
                Thread.Sleep(3000);
                int NumberOfLoanBeforeOngoing = imtr.CountNumberOfLoan();
                imtr.SerachProperty();
                imtr.clickOnCard();
                Thread.Sleep(5000);
                imtr.PropertyStatus();
                imtr.ClickOngoingDeals();
                int NumberOfLoanAfterSold = imtr.CountNumberOfLoan();
                Assert.IsTrue(NumberOfLoanBeforeOngoing > NumberOfLoanAfterSold, "Failed to changed the status to sold");


                //bool res = imtr.SoldPrice();
                //Assert.IsTrue(res == true, "Failed to get the error message");
            }
            catch (Exception e)
            {
                test.Log(Status.Fail, "Test Case Failed");
                baseTest.TakeScreenshot();
                Console.WriteLine(e.StackTrace);
            }
        }
 public void IMTR_VerifyFieldslabelInGeneralInformationSection_MiddleFive()
 {
     try
     {
         test = extent.CreateTest("IMTR_VerifyFieldslabelInGeneralInformationSection_MiddleFive").Info("Test Started");
         ContingentLiabilityPage contingent = new ContingentLiabilityPage(BaseTest.driver);
         NavigationMenuPage      navigation = new NavigationMenuPage(BaseTest.driver);
         IMTRLandingPage         imtr       = new IMTRLandingPage(BaseTest.driver);
         navigation.ClickMainMenu();
         navigation.ClickTrackRecordOption();
         imtr.ClickOngoingDeals();
         imtr.NavigateToIMTRPropDetail();
         Thread.Sleep(3000);
         String prodType = contingent.GeneralInformation_ReturnProductTypeLabel();
         String dealT    = contingent.GeneralInformation_ReturnDealTypeLabel();
         String source   = contingent.GeneralInformation_ReturnSourcingMethodLabel();
         String coInvest = contingent.GeneralInformation_ReturnCoinvestorLabel();
         String lender   = contingent.GeneralInformation_ReturnLenderLabel();
         Assert.IsTrue(prodType == "Product Type", "Incorrect product Type label is displayed on card view");
         Assert.IsTrue(dealT == "Deal Type", "Incorrect deal Type label is displayed on card view");
         Assert.IsTrue(source == "Sourcing Method", "Incorrect sourcing method label is displayed on card view");
         Assert.IsTrue(coInvest == "Co-Investor", "Incorrect Co-Investor label is displayed on card view");
         Assert.IsTrue(lender == "Lender", "Incorrect lender label is displayed on card view");
         test.Log(Status.Pass, "Test Case Passed");
     }
     catch (Exception e)
     {
         test.Log(Status.Fail, "Test Case Failed");
         baseTest.TakeScreenshot();
         Console.WriteLine(e.StackTrace);
         driver.Quit();
     }
 }
 public void IMTR_GeneralInfoPropertyNameAndAcuqisitionDateisEditable()
 {
     try
     {
         test = extent.CreateTest("IMTR_GeneralInfoPropertyNameAndAcuqisitionDateisEditable").Info("Test Started");
         IMTRLandingPage         imtr            = new IMTRLandingPage(BaseTest.driver);
         IMTRPropertyDetailsPage imtrPropdetails = new IMTRPropertyDetailsPage(BaseTest.driver);
         NavigationMenuPage      navigation      = new NavigationMenuPage(BaseTest.driver);
         navigation.ClickMainMenu();
         navigation.ClickTrackRecordOption();
         imtr.ClickOngoingDeals();
         Thread.Sleep(3000);
         imtr.NavigateToIMTRPropDetail();
         Boolean propname  = imtrPropdetails.GI_EditAndUpdatePropertyName();
         Boolean acqu      = imtrPropdetails.GI_EditAndUpdateAcquisitiondate();
         Boolean dispodate = imtrPropdetails.GI_EditAndUpdateDispositionDate();
         Assert.IsTrue(propname == acqu == dispodate == true, "General Information Edit for property name, acquisition date and disposition date do not work");
         test.Log(Status.Pass, "Test Case Passed");
     }
     catch (Exception e)
     {
         test.Log(Status.Fail, "Test Case Failed");
         baseTest.TakeScreenshot();
         Console.WriteLine(e.StackTrace);
     }
 }
 public void IMTR_VerifyFieldslabelInGeneralInformationSection_FirstFive()
 {
     try
     {
         test = extent.CreateTest("IMTR_VerifyFieldslabelInGeneralInformationSection_FirstFive").Info("Test Started");
         ContingentLiabilityPage contingent = new ContingentLiabilityPage(BaseTest.driver);
         //Pre-requisite: User navigates to contingent property details screen
         NavigationMenuPage navigation = new NavigationMenuPage(BaseTest.driver);
         IMTRLandingPage    imtr       = new IMTRLandingPage(BaseTest.driver);
         navigation.ClickMainMenu();
         navigation.ClickTrackRecordOption();
         imtr.ClickOngoingDeals();
         imtr.NavigateToIMTRPropDetail();
         Thread.Sleep(3000);
         //Verifying labels present on contingent liability card
         String yardicode = contingent.GeneralInformation_ReturnYardiCodeLabel();
         String propName  = contingent.GeneralInformation_ReturnPropertyNameLabel();
         String Acquisi   = contingent.GeneralInformation_ReturnAcquisitionDateLabel();
         String DispoD    = contingent.GeneralInformation_ReturnDispositionDateLabel();
         String market    = contingent.GeneralInformation_ReturnMarketLabel();
         Assert.IsTrue(yardicode == "Yardi Property Code", "Incorrect Yardi property code label is displayed on card view");
         Assert.IsTrue(propName == "Property Name", "Incorrect property name label is displayed on card view");
         Assert.IsTrue(Acquisi == "Acquisition Date", "Incorrect product type label is displayed on card view");
         Assert.IsTrue(DispoD == "Disposition Date", "Incorrect SRP, LP Ownership% label is displayed on card view");
         Assert.IsTrue(market == "Market", "Incorrect Total Loan Commitment label is displayed on card view");
         test.Log(Status.Pass, "Test Case Passed");
     }
     catch (Exception e)
     {
         test.Log(Status.Fail, "Test Case Failed");
         baseTest.TakeScreenshot();
         Console.WriteLine(e.StackTrace);
         driver.Quit();
     }
 }
 public void UpdateEquitiesAndConfirmTotalReturns()
 {
     try
     {
         test = extent.CreateTest("UpdateEquitiesAndConfirmTotalReturns").Info("Test Started");
         IMTRLandingPage         imtr            = new IMTRLandingPage(BaseTest.driver);
         IMTRPropertyDetailsPage imtrPropdetails = new IMTRPropertyDetailsPage(BaseTest.driver);
         imtr.ClickTrackRecordOnInMenu();
         Thread.Sleep(3000);
         imtr.ClickOngoingDeals();
         imtr.NavigateToIMTRPropDetail();
         imtrPropdetails.EditAndInvestorEquity();
         imtrPropdetails.EditAndUpdate3rdPartyEquity();
         imtrPropdetails.EditAndUpdateSponsorReturns();
         String res = imtrPropdetails.CheckTotalReturns();
         Assert.IsTrue(res == "15,000", "Sum of equities is not correct");
         test.Log(Status.Pass, "Test Case Passed");
     }
     catch (Exception e)
     {
         test.Log(Status.Fail, "Test Case Failed");
         baseTest.TakeScreenshot();
         Console.WriteLine(e.StackTrace);
     }
 }
Exemplo n.º 8
0
        public void NavigationToIMTRDetails()
        {
            try
            {
                test = extent.CreateTest("NavigationToIMTRDetails").Info("Test Started");
                IMTRLandingPage    imtr       = new IMTRLandingPage(BaseTest.driver);
                NavigationMenuPage navigation = new NavigationMenuPage(BaseTest.driver);
                navigation.ClickMainMenu();
                navigation.ClickTrackRecordOption();

                //Navigation from Ongoing deals
                imtr.ClickOngoingDeals();
                imtr.NavigateToIMTRPropDetail();
                String title_Ongoing = imtr.UserLandsOnPropertyDeatilsScreen();
                Assert.AreEqual(title_Ongoing, "Track Record", "User does not reach to IM Property details");

                //Navigation from Sold deals
                imtr.ClickInvestMentTrackRecordFromIMTR();
                imtr.ClickSoldDeals();
                imtr.NavigateToIMTRPropDetail();
                String title_sold = imtr.UserLandsOnPropertyDeatilsScreen();
                Assert.AreEqual(title_sold, "Track Record", "User does not reach to IM Property details");
                test.Log(Status.Pass, "Test Case Passed");
            }
            catch (Exception e)
            {
                test.Log(Status.Fail, "Test Case Failed");
                baseTest.TakeScreenshot();
                Console.WriteLine(e.StackTrace);
                driver.Close();
            }
        }
 public void IMTR_VerifyFieldslabelInDistributionsSection()
 {
     try
     {
         test = extent.CreateTest("IMTR_VerifyFieldslabelInCapitalization").Info("Test Started");
         NavigationMenuPage      navigation      = new NavigationMenuPage(BaseTest.driver);
         IMTRLandingPage         imtr            = new IMTRLandingPage(BaseTest.driver);
         IMTRPropertyDetailsPage imtrPropdetails = new IMTRPropertyDetailsPage(BaseTest.driver);
         navigation.ClickMainMenu();
         navigation.ClickTrackRecordOption();
         imtr.ClickOngoingDeals();
         imtr.NavigateToIMTRPropDetail();
         Thread.Sleep(3000);
         String label1 = imtrPropdetails.ThirdPartySponsor_ReturnDistributionsReturnsLabel();
         String label2 = imtrPropdetails.StreamSponsor_ReturnDistributionsLabel();
         String label3 = imtrPropdetails.InvestorSponsor_ReturnDistributionslabel();
         String label4 = imtrPropdetails.TotalReturns_ReturnDistributionsLabel();
         Assert.IsTrue(label1 == "3rd-Party Sponsor Distributions", $"Expected:'3rd-Party Sponsor Distributions' does not match actual:{label1}");
         Assert.IsTrue(label2 == "Stream Sponsor Distributions", $"Expected:'Stream Sponsor Distributions' does not match actual:{label2}");
         Assert.IsTrue(label3 == "Investor Distributions", $"Expected:'Investor Distributions' does not match actual:{label3}");
         Assert.IsTrue(label4 == "Total Distributions", $"Expected:'Total Distributions' does not match actual:{label4}");
         test.Log(Status.Pass, "Test Case Passed");
     }
     catch (Exception e)
     {
         test.Log(Status.Fail, "Test Case Failed");
         baseTest.TakeScreenshot();
         Console.WriteLine(e.StackTrace);
         driver.Quit();
     }
 }
 public void Capitalization_VerifyLTCCalculation()
 {
     try
     {
         test = extent.CreateTest("Capitalization_VerifyLTCCalculation").Info("Test Started");
         NavigationMenuPage      navigation      = new NavigationMenuPage(BaseTest.driver);
         IMTRLandingPage         imtr            = new IMTRLandingPage(BaseTest.driver);
         IMTRPropertyDetailsPage imtrPropdetails = new IMTRPropertyDetailsPage(BaseTest.driver);
         navigation.ClickMainMenu();
         navigation.ClickTrackRecordOption();
         imtr.ClickOngoingDeals();
         imtr.NavigateToIMTRPropDetail();
         double actualValue     = imtrPropdetails.Capitalization_ReturnActualLTCValue();
         double calculatedValue = imtrPropdetails.Capitalization_CalculatedLTCValue();
         Assert.IsTrue(actualValue == calculatedValue, $"Value on screen {actualValue} does not match calculated {calculatedValue}");
         test.Log(Status.Pass, "Test Case Passed");
     }
     catch (Exception e)
     {
         test.Log(Status.Fail, "Test Case Failed");
         baseTest.TakeScreenshot();
         Console.WriteLine(e.StackTrace);
         driver.Quit();
     }
 }
 public void IMTR_GeneralInfoPurchasePriceAndRSFFieldsAreEditable()
 {
     try
     {
         test = extent.CreateTest("IMTR_GeneralInfoPurchasePriceAndRSFFieldsAreEditable").Info("Test Started");
         IMTRLandingPage         imtr            = new IMTRLandingPage(BaseTest.driver);
         IMTRPropertyDetailsPage imtrPropdetails = new IMTRPropertyDetailsPage(BaseTest.driver);
         NavigationMenuPage      navigation      = new NavigationMenuPage(BaseTest.driver);
         navigation.ClickMainMenu();
         navigation.ClickTrackRecordOption();
         imtr.ClickOngoingDeals();
         imtr.NavigateToIMTRPropDetail();
         Boolean purchase = imtrPropdetails.GI_EditAndUpdatePurchasePrice();
         Assert.IsTrue(purchase == true, "Purchase Price field is not editable");
         Boolean rsf = imtrPropdetails.GI_EditAndUpdateRSFValue();
         Assert.IsTrue(rsf == true, "RSF field is not editable");
         test.Log(Status.Pass, "Test Case Passed");
     }
     catch (Exception e)
     {
         test.Log(Status.Fail, "Test Case Failed");
         baseTest.TakeScreenshot();
         Console.WriteLine(e.StackTrace);
     }
 }
 public void GeneralInfo_VerifyErrorMessageDisplayedWhenSoldPriceIsSaved()
 {
     try
     {
         test = extent.CreateTest("GeneralInfo_VerifyErrorMessageDisplayedWhenSoldPriceIsSaved").Info("Test Started");
         NavigationMenuPage      navigation      = new NavigationMenuPage(BaseTest.driver);
         IMTRLandingPage         imtr            = new IMTRLandingPage(BaseTest.driver);
         IMTRPropertyDetailsPage imtrPropdetails = new IMTRPropertyDetailsPage(BaseTest.driver);
         navigation.ClickMainMenu();
         navigation.ClickTrackRecordOption();
         imtr.ClickOngoingDeals();
         imtr.NavigateToIMTRPropDetail();
         String alertText       = imtrPropdetails.GI_EditAndUpdateSoldPrice();
         double calculatedValue = imtrPropdetails.Capitalization_CalculatedLTCValue();
         Assert.IsTrue(alertText == "Please enter Disposition Date and sold Price to sell a property.", $"Expected error 'Please enter Disposition Date and sold Price to sell a property.' does not match actual{alertText}");
         test.Log(Status.Pass, "Test Case Passed");
     }
     catch (Exception e)
     {
         test.Log(Status.Fail, "Test Case Failed");
         baseTest.TakeScreenshot();
         Console.WriteLine(e.StackTrace);
         driver.Quit();
     }
 }
Exemplo n.º 13
0
 public void NumberOfDealsfromTileandTablematches()
 {
     try
     {
         test = extent.CreateTest("NumberOfDealsfromTileandTablematches").Info("Test Started");
         IMTRLandingPage    imtr       = new IMTRLandingPage(BaseTest.driver);
         NavigationMenuPage navigation = new NavigationMenuPage(BaseTest.driver);
         navigation.ClickMainMenu();
         navigation.ClickTrackRecordOption();
         //Count of deals from performance highlights page
         int OngoingDealsOntitle = imtr.GetNumOfOngoingDealsOnTile();
         int SoldDealsOntitle    = imtr.GetNumOfSoldDealsOnTile();
         //Verification on sold count matches from tile and table
         imtr.ClickOngoingDeals();
         int OngoingDealsInTable = imtr.GetNumOfOngoingDealsInTable();
         Assert.IsTrue(OngoingDealsOntitle == OngoingDealsInTable, $"Count displayed on performance {OngoingDealsOntitle} does not match count in table {OngoingDealsInTable}");
         //Verification on sold count matches from tile and table
         imtr.ClickSoldDeals();
         int SoldDealsInTable = imtr.GetNumOfSoldDealsInTable();
         Assert.IsTrue(SoldDealsOntitle == SoldDealsInTable, $"Count displayed on performance {SoldDealsOntitle} does not match count in table {SoldDealsInTable}");
         test.Log(Status.Pass, "Test Case Passed");
     }
     catch (Exception e)
     {
         test.Log(Status.Fail, "Test Case Failed");
         baseTest.TakeScreenshot();
         Console.WriteLine(e.StackTrace);
     }
 }
 public void IMTR_GeneralInfoAllDropdownsAreEditable()
 {
     try
     {
         test = extent.CreateTest("IMTR_GeneralInfoAllDropdownsAreEditable").Info("Test Started");
         IMTRLandingPage         imtr            = new IMTRLandingPage(BaseTest.driver);
         IMTRPropertyDetailsPage imtrPropdetails = new IMTRPropertyDetailsPage(BaseTest.driver);
         NavigationMenuPage      navigation      = new NavigationMenuPage(BaseTest.driver);
         navigation.ClickMainMenu();
         navigation.ClickTrackRecordOption();
         imtr.ClickOngoingDeals();
         imtr.NavigateToIMTRPropDetail();
         Boolean market = imtrPropdetails.GI_EditAndUpdatePMarketValue();
         Assert.IsTrue(market == true, "Market field is not editable");
         Boolean proType = imtrPropdetails.GI_EditAndUpdateProductType();
         Assert.IsTrue(proType == true, "product type field is not editable");
         Boolean dealType = imtrPropdetails.GI_EditAndUpdateDealType();
         Assert.IsTrue(dealType == true, "deal type field is not editable");
         Boolean source = imtrPropdetails.GI_EditAndUpdateSourcingMethod();
         Assert.IsTrue(source == true, "sourcing method field is not editable");
         Boolean coinvest = imtrPropdetails.GI_EditAndUpdateCoInvestor();
         Assert.IsTrue(coinvest == true, "Co invest field is not editable");
         Boolean lender = imtrPropdetails.GI_EditAndUpdateLenderName();
         Assert.IsTrue(lender == true, "lender field is not editable");
         test.Log(Status.Pass, "Test Case Passed");
     }
     catch (Exception e)
     {
         test.Log(Status.Fail, "Test Case Failed");
         baseTest.TakeScreenshot();
         Console.WriteLine(e.StackTrace);
     }
 }
 public void VerifyAlertTextForOngoingDealsKeepingDateEmpty()
 {
     try
     {
         test = extent.CreateTest("VerifyAlertTextForOngoingDealsKeepingDispostionDateEmpty").Info("Test Started");
         NavigationMenuPage navigation = new NavigationMenuPage(BaseTest.driver);
         IMTRLandingPage    imtr       = new IMTRLandingPage(BaseTest.driver);
         navigation.ClickMainMenu();
         navigation.ClickTrackRecordOption();
         imtr.ClickOngoingDeals();
         Thread.Sleep(3000);
         imtr.SerachProperty();
         imtr.clickOnCard();
         imtr.clickOnEditIcon();
         Thread.Sleep(5000);
         bool res = imtr.SoldPrice();
         Assert.IsTrue(res == true, "Failed to get the error message");
     }
     catch (Exception e)
     {
         test.Log(Status.Fail, "Test Case Failed");
         baseTest.TakeScreenshot();
         Console.WriteLine(e.StackTrace);
     }
 }
Exemplo n.º 16
0
 public void IMTRSoldDeals_VerifyListViewColumnLabels()
 {
     try
     {
         test = extent.CreateTest("IMTRSoldDeals_VerifyListViewColumnLabels").Info("Test Started");
         NavigationMenuPage navigation = new NavigationMenuPage(BaseTest.driver);
         IMTRLandingPage    imtr       = new IMTRLandingPage(BaseTest.driver);
         navigation.ClickMainMenu();
         navigation.ClickTrackRecordOption();
         imtr.ClickSoldDeals();
         imtr.ChangeToListView();
         String label1 = imtr.ReturnListViewColumnLabel1();
         String label2 = imtr.ReturnListViewColumnLabel2();
         String label3 = imtr.ReturnListViewColumnLabel3();
         String label4 = imtr.ReturnListViewColumnLabel4();
         String label5 = imtr.ReturnListViewColumnLabel5();
         String label6 = imtr.ReturnListViewColumnLabel6();
         String label7 = imtr.ReturnListViewColumnLabel7();
         Assert.IsTrue(label1 == "Property Name", $"Expected:'Property Name' does not match Actual:{label1}");
         Assert.IsTrue(label2 == "Market", $"Expected:'Market' does not match Actual:{label2}");
         Assert.IsTrue(label3 == "Co-Investor", $"Expected:'C-Investor' does not match Actual:{label3}");
         Assert.IsTrue(label4 == "Property Type", $"Expected:'Property Type' does not match Actual:{label4}");
         Assert.IsTrue(label5 == "Disposition Date", $"Expected:'Disposition Date' does not match Actual:{label5}");
         Assert.IsTrue(label6 == "RSF", $"Expected:'RSF' does not match Actual:{label6}");
         Assert.IsTrue(label7 == "Sold Price", $"Expected:'Sold Price' does not match Actual:{label7}");
     }
     catch (Exception e)
     {
         test.Log(Status.Fail, "Test Case Failed");
         baseTest.TakeScreenshot();
         Console.WriteLine(e.StackTrace);
     }
 }
Exemplo n.º 17
0
 public void IMTRSoldDeals_VerifyCardLabels()
 {
     try
     {
         test = extent.CreateTest("IMTRSoldDeals_VerifyCardLabels").Info("Test Started");
         NavigationMenuPage navigation = new NavigationMenuPage(BaseTest.driver);
         IMTRLandingPage    imtr       = new IMTRLandingPage(BaseTest.driver);
         navigation.ClickMainMenu();
         navigation.ClickTrackRecordOption();
         imtr.ClickSoldDeals();
         String label1 = navigation.ReturnCardLabel1();
         String label2 = navigation.ReturnCardLabel2();
         String label3 = navigation.ReturnCardLabel3();
         String label4 = navigation.ReturnCardLabel4();
         String label5 = navigation.ReturnCardLabel5();
         String label6 = navigation.ReturnCardLabel6();
         Assert.IsTrue(label1 == "Market:", $"Expected:'Market:' does not match Actual:{label1}");
         Assert.IsTrue(label2 == "Product Type:", $"Expected:'Product Type:' does not match Actual:{label2}");
         Assert.IsTrue(label3 == "Purchase Price:", $"Expected:'Purchase Price:' does not match Actual:{label3}");
         Assert.IsTrue(label4 == "Sold Price:", $"Expected:'Sold Price:' does not match Actual:{label4}");
         Assert.IsTrue(label5 == "Deal Type:", $"Expected:'Deal Type:' does not match Actual:{label5}");
         Assert.IsTrue(label6 == "RSF:", $"Expected:'RSF:' does not match Actual:{label6}");
     }
     catch (Exception e)
     {
         test.Log(Status.Fail, "Test Case Failed");
         baseTest.TakeScreenshot();
         Console.WriteLine(e.StackTrace);
     }
 }
 public void IMTR_VerifyFieldslabelInGeneralInformationSection_LastSix()
 {
     try
     {
         test = extent.CreateTest("IMTR_VerifyFieldslabelInGeneralInformationSection_LastSix").Info("Test Started");
         ContingentLiabilityPage contingent = new ContingentLiabilityPage(BaseTest.driver);
         NavigationMenuPage      navigation = new NavigationMenuPage(BaseTest.driver);
         IMTRLandingPage         imtr       = new IMTRLandingPage(BaseTest.driver);
         navigation.ClickMainMenu();
         navigation.ClickTrackRecordOption();
         imtr.ClickOngoingDeals();
         imtr.NavigateToIMTRPropDetail();
         Thread.Sleep(3000);
         String rsf        = contingent.GeneralInformation_ReturnRSFLabel();
         String purchasePr = contingent.GeneralInformation_ReturnPurchasePriceLabel();
         String soldPrice  = contingent.GeneralInformation_ReturnSoldPriceLabel();
         String holdDays   = contingent.GeneralInformation_ReturnHoldDaysLabel();
         String holdMonths = contingent.GeneralInformation_ReturnHoldMonthsLabel();
         String status     = contingent.GeneralInformation_ReturnStatusLabel();
         Assert.IsTrue(rsf == "RSF", "Incorrect RSF label is displayed on card view");
         Assert.IsTrue(purchasePr == "Purchase Price", "Incorrect purchase Price label is displayed on card view");
         Assert.IsTrue(soldPrice == "Sold Price", "Incorrect sold price label is displayed on card view");
         Assert.IsTrue(holdDays == "Hold Days", "Incorrect hold days label is displayed on card view");
         Assert.IsTrue(holdMonths == "Hold Months", "Incorrect hold months label is displayed on card view");
         Assert.IsTrue(status == "Status", "Incorrect status label is displayed on card view");
         test.Log(Status.Pass, "Test Case Passed");
     }
     catch (Exception e)
     {
         test.Log(Status.Fail, "Test Case Failed");
         baseTest.TakeScreenshot();
         Console.WriteLine(e.StackTrace);
         driver.Quit();
     }
 }
 public void IMTRDetails_EditAndUpdateCapitalization()
 {
     try
     {
         test = extent.CreateTest("IMTRDetails_EditAndUpdateCapitalization").Info("Test Started");
         IMTRLandingPage         imtr            = new IMTRLandingPage(BaseTest.driver);
         IMTRPropertyDetailsPage imtrPropdetails = new IMTRPropertyDetailsPage(BaseTest.driver);
         NavigationMenuPage      navigation      = new NavigationMenuPage(BaseTest.driver);
         navigation.ClickMainMenu();
         navigation.ClickTrackRecordOption();
         imtr.ClickOngoingDeals();
         imtr.NavigateToIMTRPropDetail();
         Boolean debt = imtrPropdetails.Capitalization_EditandUpdateDebtField();
         Assert.IsTrue(debt == true, "Debt Value is not correctly updated");
         Boolean eQ1 = imtrPropdetails.Capitalization_EditandUpdateInvestorEquity();
         Assert.IsTrue(eQ1 == true, "Investor equity Value is not correctly updated");
         Boolean eQ2 = imtrPropdetails.Capitalization_EditandUpdateStreamEquity();
         Assert.IsTrue(eQ2 == true, "Stream Equity Value is not correctly updated");
         Boolean eQ3 = imtrPropdetails.Capitalization_EditandUpdateOutsideEquityEquity();
         Assert.IsTrue(eQ3 == true, "Outside Equity Value is not correctly updated");
         test.Log(Status.Pass, "Test Case Passed");
     }
     catch (Exception e)
     {
         test.Log(Status.Fail, "Test Case Failed");
         baseTest.TakeScreenshot();
         Console.WriteLine(e.StackTrace);
     }
 }
 public void IMTR_VerifyFieldslabelInPurchaseAndExistPrice()
 {
     try
     {
         test = extent.CreateTest("IMTR_VerifyFieldslabelInPurchaseAndExistPrice").Info("Test Started");
         NavigationMenuPage      navigation      = new NavigationMenuPage(BaseTest.driver);
         IMTRLandingPage         imtr            = new IMTRLandingPage(BaseTest.driver);
         IMTRPropertyDetailsPage imtrPropdetails = new IMTRPropertyDetailsPage(BaseTest.driver);
         navigation.ClickMainMenu();
         navigation.ClickTrackRecordOption();
         imtr.ClickOngoingDeals();
         imtr.NavigateToIMTRPropDetail();
         Thread.Sleep(3000);
         String totalCost = imtrPropdetails.PurchasePriceAndExistPrice_ReturnTotalCostBasislabel();
         String exitPrice = imtrPropdetails.PurchasePriceAndExistPrice_ReturnExitPricelabel();
         Assert.IsTrue(totalCost == "Total Cost Basis", $"Expected:'Total Cost Basis' does not match actual:{totalCost}");
         Assert.IsTrue(exitPrice == "Exit Price", $"Expected:'Exit Price' does not match actual:{exitPrice}");
         test.Log(Status.Pass, "Test Case Passed");
     }
     catch (Exception e)
     {
         test.Log(Status.Fail, "Test Case Failed");
         baseTest.TakeScreenshot();
         Console.WriteLine(e.StackTrace);
         driver.Quit();
     }
 }
Exemplo n.º 21
0
        public void VerifyOSearchWorksForOngoingAndSoldDeals()
        {
            try
            {
                test = extent.CreateTest("VerifyOSearchWorksForOngoingAndSoldDeals").Info("Test Started");
                IMTRLandingPage    imtr       = new IMTRLandingPage(BaseTest.driver);
                NavigationMenuPage navigation = new NavigationMenuPage(BaseTest.driver);
                navigation.ClickMainMenu();
                navigation.ClickTrackRecordOption();

                //Verify search works as expected for ongoing deals
                imtr.ClickOngoingDeals();
                int searchbefore = imtr.RowsBeforeSearch();
                int searchafter  = imtr.RowsafterSearchForProperty();
                Assert.True(searchafter < searchbefore, "Search does not work");

                //Verify search works as expected for sold deals
                driver.Navigate().Refresh();
                imtr.ClickSoldDeals();
                Thread.Sleep(2000);
                int sbefore = imtr.RowsBeforeSearch();
                int safter  = imtr.RowsafterSearchForProperty();
                Assert.True(safter < sbefore, "Search does not work");
                test.Log(Status.Pass, "Test Case Passed");
            }
            catch (Exception e)
            {
                test.Log(Status.Fail, "Test Case Failed");
                baseTest.TakeScreenshot();
                Console.WriteLine(e.StackTrace);
                driver.Close();
            }
        }
        public void IMTRDetails_VerifySectionTitles()
        {
            try
            {
                test = extent.CreateTest("IMTRDetails_VerifySectionTitles(").Info("Test Started");
                //Pre-requisite: User navigates to contingent property details screen
                NavigationMenuPage      navigation      = new NavigationMenuPage(BaseTest.driver);
                IMTRLandingPage         imtr            = new IMTRLandingPage(BaseTest.driver);
                IMTRPropertyDetailsPage imtrPropdetails = new IMTRPropertyDetailsPage(BaseTest.driver);
                navigation.ClickMainMenu();
                navigation.ClickTrackRecordOption();
                imtr.ClickOngoingDeals();
                imtr.NavigateToIMTRPropDetail();
                Thread.Sleep(3000);
                //Verifying section titles
                String section1 = imtrPropdetails.ReturnGeneralInfoSectionLabel();
                Assert.IsTrue(section1 == "GENERAL INFORMATION", $"Expected-'GENERAL INFORMATION' section title does not match actual{section1}");

                String section2 = imtrPropdetails.ReturnPurchaseVsExitSectionlabel();
                Assert.IsTrue(section2 == "PURCHASE VS. EXIT", $"Expected-'PURCHASE VS. EXIT' section title does not match actual{section2}");

                String section3 = imtrPropdetails.ReturnCapitalizationSectionlabel();
                Assert.IsTrue(section3 == "CAPITALIZATION", $"Expected-'CAPITALIZATION' section title does not match actual{section3}");

                String section4 = imtrPropdetails.ReturnThirdPartyEquitySectionlabel();
                Assert.IsTrue(section4 == "3RD - PARTY SPONSOR RETURNS", $"3RD - PARTY SPONSOR RETURNS' section title does not match actual{section4}");

                String section5 = imtrPropdetails.ReturnSponsorEquitySectionlabel();
                Assert.IsTrue(section5 == "SPONSOR RETURNS - STREAM", $"Expected-'SPONSOR RETURNS - STREAM' section title does not match actual{section5}");

                String section6 = imtrPropdetails.ReturnInvestorEquitySectionlabel();
                Assert.IsTrue(section6 == "INVESTOR RETURNS", $"Expected-'INVESTOR RETURNS' section title does not match actual{section6}");

                String section7 = imtrPropdetails.ReturnTotalEquitySectionlabel();
                Assert.IsTrue(section7 == "TOTAL RETURNS", $"Expected-'TOTAL RETURNS' section title does not match actual{section7}");
                test.Log(Status.Pass, "Test Case Passed");
            }
            catch (Exception e)
            {
                test.Log(Status.Fail, "Test Case Failed");
                baseTest.TakeScreenshot();
                Console.WriteLine(e.StackTrace);
                driver.Quit();
            }
        }
Exemplo n.º 23
0
        public void VerifySortByOptions()
        {
            try
            {
                test = extent.CreateTest("VerifySortByOptions").Info("Test Started");
                IMTRLandingPage    imtr       = new IMTRLandingPage(BaseTest.driver);
                NavigationMenuPage navigation = new NavigationMenuPage(BaseTest.driver);
                navigation.ClickMainMenu();
                navigation.ClickTrackRecordOption();

                //Verify Sort By for ongoing deals
                imtr.ClickOngoingDeals();
                //Verify descending works as expected
                imtr.ClickOptionsInSortBy();
                Boolean desc = imtr.SelectDescending();
                Assert.True(desc == true, "Descending does not work");
                Thread.Sleep(3000);
                //Verify Ascending works as expected
                Boolean Asc = imtr.SelectDescending();
                Assert.True(Asc == true, "Ascending does not work");

                //Verify Sort by for Sold Deals
                driver.Navigate().Refresh();
                Thread.Sleep(3000);
                imtr.ClickSoldDeals();
                imtr.ChangeToView();
                imtr.ClickOptionsInSortBy();
                Boolean desc1 = imtr.SelectDescending();
                Assert.True(desc1 == true, "Descending does not work");
                Boolean Asc1 = imtr.SelectDescending();
                Assert.True(Asc1 == true, "Ascending does not work");
                test.Log(Status.Pass, "Test Case Passed");
            }
            catch (Exception e)
            {
                test.Log(Status.Fail, "Test Case Failed");
                baseTest.TakeScreenshot();
                Console.WriteLine(e.StackTrace);
            }
        }
 public void UpdateExitPriceFromPurchaseVsExit()
 {
     try
     {
         test = extent.CreateTest("UpdateExitPriceFromPurchaseVsExit").Info("Test Started");
         IMTRLandingPage         imtr            = new IMTRLandingPage(BaseTest.driver);
         IMTRPropertyDetailsPage imtrPropdetails = new IMTRPropertyDetailsPage(BaseTest.driver);
         NavigationMenuPage      navigation      = new NavigationMenuPage(BaseTest.driver);
         navigation.ClickMainMenu();
         navigation.ClickTrackRecordOption();
         imtr.ClickOngoingDeals();
         imtr.NavigateToIMTRPropDetail();
         Boolean res = imtrPropdetails.EditAndUpdateExitPrice();
         Assert.IsTrue(res == true, "Exit Price Value not correctly updated");
         test.Log(Status.Pass, "Test Case Passed");
     }
     catch (Exception e)
     {
         test.Log(Status.Fail, "Test Case Failed");
         baseTest.TakeScreenshot();
         Console.WriteLine(e.StackTrace);
     }
 }
        public void VerifyPropertyTypeIsOngoing()
        {
            BaseTest baseTest = new BaseTest();

            try
            {
                test = extent.CreateTest("VerifyPropertyTypeIsOngoing").Info("Test Started");
                IMTRLandingPage         imtr            = new IMTRLandingPage(BaseTest.driver);
                IMTRPropertyDetailsPage imtrPropdetails = new IMTRPropertyDetailsPage(BaseTest.driver);
                imtr.ClickTrackRecordOnInMenu();
                imtr.ClickOngoingDeals();
                imtr.NavigateToIMTRPropDetail();
                String dealtype = imtrPropdetails.ReturnPropertyDealType();
                Assert.AreEqual("Ongoing", dealtype, "Property is not ongoing property");
                test.Log(Status.Pass, "Test Case Passed");
            }
            catch (Exception e)
            {
                test.Log(Status.Fail, "Test Case Failed");
                baseTest.TakeScreenshot();
                Console.WriteLine(e.StackTrace);
            }
        }
Exemplo n.º 26
0
 public void IMTR_VerifyTabLabelsDisplayed()
 {
     try
     {
         test = extent.CreateTest("IMTROngoinDeals_VerifyCardLabels").Info("Test Started");
         NavigationMenuPage navigation = new NavigationMenuPage(BaseTest.driver);
         IMTRLandingPage    imtr       = new IMTRLandingPage(BaseTest.driver);
         navigation.ClickMainMenu();
         navigation.ClickTrackRecordOption();
         String label1 = imtr.ReturnPerformanceHighlightsTabLabel();
         String label2 = imtr.ReturnOngoingDealTabLabel();
         String label3 = imtr.ReturnSoldDealTabLabel();
         Assert.IsTrue(label1 == "PERFORMANCE HIGHLIGHTS", $"Expected:'PERFORMANCE HIGHLIGHTS' does not match Actual:{label1}");
         Assert.IsTrue(label2 == "ONGOING DEALS", $"Expected:'ONGOING DEALS' does not match Actual:{label2}");
         Assert.IsTrue(label3 == "SOLD DEALS", $"Expected:'SOLD DEALS' does not match Actual:{label3}");
     }
     catch (Exception e)
     {
         test.Log(Status.Fail, "Test Case Failed");
         baseTest.TakeScreenshot();
         Console.WriteLine(e.StackTrace);
     }
 }
 public void IMTR_VerifyFieldslabelInCapitalization()
 {
     try
     {
         test = extent.CreateTest("IMTR_VerifyFieldslabelInCapitalization").Info("Test Started");
         NavigationMenuPage      navigation      = new NavigationMenuPage(BaseTest.driver);
         IMTRLandingPage         imtr            = new IMTRLandingPage(BaseTest.driver);
         IMTRPropertyDetailsPage imtrPropdetails = new IMTRPropertyDetailsPage(BaseTest.driver);
         navigation.ClickMainMenu();
         navigation.ClickTrackRecordOption();
         imtr.ClickOngoingDeals();
         imtr.NavigateToIMTRPropDetail();
         Thread.Sleep(3000);
         String label1 = imtrPropdetails.Capitalization_ReturnTotalCapitalabel();
         String label2 = imtrPropdetails.Capitalization_ReturnDebtlabel();
         String label3 = imtrPropdetails.Capitalization_ReturnTotalequitylabel();
         String label4 = imtrPropdetails.Capitalization_ReturnLTClabel();
         String label5 = imtrPropdetails.Capitalization_ReturnInvestorEquitylabel();
         String label6 = imtrPropdetails.Capitalization_ReturnStreamEquityExitPricelabel();
         String label7 = imtrPropdetails.Capitalization_ReturnOutsideSponsorlabel();
         Assert.IsTrue(label1 == "Total Capitalization", $"Expected:'Total Capitalization' does not match actual:{label1}");
         Assert.IsTrue(label2 == "Debt", $"Expected:'Debt' does not match actual:{label2}");
         Assert.IsTrue(label3 == "Total Equity", $"Expected:'Total Equity' does not match actual:{label3}");
         Assert.IsTrue(label4 == "LTC", $"Expected:'LTC' does not match actual:{label4}");
         Assert.IsTrue(label5 == "Investor Equity", $"Expected:'Investor Equity' does not match actual:{label5}");
         Assert.IsTrue(label6 == "Stream Sponsor Equity", $"Expected:'Stream Sponsor Equity' does not match actual:{label6}");
         Assert.IsTrue(label7 == "Outside Sponsor Equity", $"Expected:'Outside Sponsor Equity' does not match actual:{label7}");
         test.Log(Status.Pass, "Test Case Passed");
     }
     catch (Exception e)
     {
         test.Log(Status.Fail, "Test Case Failed");
         baseTest.TakeScreenshot();
         Console.WriteLine(e.StackTrace);
         driver.Quit();
     }
 }
Exemplo n.º 28
0
 public void VerifyTotalReturnNullData()
 {
     try
     {
         test = extent.CreateTest("VerifyInvestorReturnNullData").Info("Test Started");
         NavigationMenuPage navigation = new NavigationMenuPage(BaseTest.driver);
         IMTRLandingPage    imtr       = new IMTRLandingPage(BaseTest.driver);
         navigation.ClickMainMenu();
         navigation.ClickTrackRecordOption();
         imtr.ClickOngoingDeals();
         Thread.Sleep(3000);
         // imtr.SerachProperty();
         imtr.clickOnCard();
         Thread.Sleep(5000);
         bool res = imtr.PurchaseVsExit();
         Assert.IsTrue(res == true, "Values are not upaded to hyphen/null ");
     }
     catch (Exception e)
     {
         test.Log(Status.Fail, "Test Case Failed");
         baseTest.TakeScreenshot();
         Console.WriteLine(e.StackTrace);
     }
 }
 public void ArchiveIMTROngoingDeals()
 {
     try
     {
         test = extent.CreateTest("ArchiveIMTROngoingDeals").Info("Test Started");
         NavigationMenuPage navigation = new NavigationMenuPage(BaseTest.driver);
         IMTRLandingPage    imtr       = new IMTRLandingPage(BaseTest.driver);
         navigation.ClickMainMenu();
         navigation.ClickTrackRecordOption();
         imtr.ClickOngoingDeals();
         Thread.Sleep(3000);
         imtr.clickOnCard();
         int NumberOfLoanBeforeArchive = imtr.CountNumberOfLoan();
         imtr.clickOnArchiveIcon();
         int NumberOfLoanAfterArchive = imtr.CountNumberOfLoan();
         Assert.IsTrue(NumberOfLoanBeforeArchive > NumberOfLoanAfterArchive, "Failed to archived loan");
     }
     catch (Exception e)
     {
         test.Log(Status.Fail, "Test Case Failed");
         baseTest.TakeScreenshot();
         Console.WriteLine(e.StackTrace);
     }
 }
 public void InvestorDistributions_VerifyNoDataChangesmadeMessageDisplayed()
 {
     try
     {
         test = extent.CreateTest("InvestorDistributions_VerifyNoDataChangesmadeMessageDisplayed").Info("Test Started");
         NavigationMenuPage      navigation      = new NavigationMenuPage(BaseTest.driver);
         IMTRLandingPage         imtr            = new IMTRLandingPage(BaseTest.driver);
         IMTRPropertyDetailsPage imtrPropdetails = new IMTRPropertyDetailsPage(BaseTest.driver);
         navigation.ClickMainMenu();
         navigation.ClickTrackRecordOption();
         imtr.ClickOngoingDeals();
         imtr.NavigateToIMTRPropDetail();
         String alertText = imtrPropdetails.Investorequity_VerifyErrorNoChangesmade();
         Assert.IsTrue(alertText == "No changes made in data...", $"Expected error 'No changes made in data...' does not match actual{alertText}");
         test.Log(Status.Pass, "Test Case Passed");
     }
     catch (Exception e)
     {
         test.Log(Status.Fail, "Test Case Failed");
         baseTest.TakeScreenshot();
         Console.WriteLine(e.StackTrace);
         driver.Quit();
     }
 }