public void TC49_VerifyLoyalityFeeBuyMarketOrderTest() { instrument = TestData.GetData("Instrument"); buyTab = TestData.GetData("BuyTab"); accountID = TestData.GetData("TC49_AccountID"); buyMarketOrderAmount = TestData.GetData("TC49_BuyMarketOrderAmount"); UserFunctions userFuntions = new UserFunctions(TestProgressLogger); AdminFunctions objAdminFunctions = new AdminFunctions(TestProgressLogger); AdminCommonFunctions objAdminCommonFunctions = new AdminCommonFunctions(TestProgressLogger); UserCommonFunctions userCommonFunctions = new UserCommonFunctions(TestProgressLogger); LoyaltyTokenPage loyaltyTokenPage = new LoyaltyTokenPage(TestProgressLogger); OrderEntryPage orderEnteryPage = new OrderEntryPage(driver, TestProgressLogger); try { TestProgressLogger.StartTest(); // The admin will enabled the loyalty fee(LTC) to the user // Login as admin objAdminFunctions.AdminLogIn(TestProgressLogger); TestProgressLogger.LogCheckPoint(String.Format(LogMessage.AdminLoyaltyFeeCheckStart, accountID)); objAdminCommonFunctions.SelectAccountsMenu(); // Enter accountID in "Open Account by ID" textbox of the user for which Loyalty Fee should be applied objAdminCommonFunctions.OpenAccountByIDText(accountID); // Click on "Open" button objAdminCommonFunctions.OpenAccountBtn(); // Click on "Edit Account Information" link objAdminCommonFunctions.EditInformationButton(); // Click on "Loyalty Fees Enabled(LTC)" checkbox button. This will enable Fees to be deducted int the form of LTC objAdminCommonFunctions.LoyaltyFeeCheckedOrUnchecked(); objAdminCommonFunctions.SaveButton(); TestProgressLogger.LogCheckPoint(String.Format(LogMessage.AdminLoyaltyFeeCheckCompleted, accountID)); objAdminCommonFunctions.UserMenuBtn(); // Admin LogOut objAdminFunctions.AdminLogOut(); // This will verify whether the Fee applied is in the form of LTC // Login as User for which Loyalty Fees Enabled(LTC) was selected // Navigate to UserSetting -> Loyalty Token -> Select Radio Button for LTC userFuntions.LogIn(TestProgressLogger, Const.USER13); UserCommonFunctions.DashBoardMenuButton(driver); UserCommonFunctions.NavigateToUserSetting(driver); loyaltyTokenPage.LoyaltyTokenButton(driver); loyaltyTokenPage.TradingFeeRadioButton(driver); loyaltyTokenPage.UserSettingMenuButton(driver); TestProgressLogger.LogCheckPoint(LogMessage.SelectLoyaltyTokenSuccess); // Navigate to Exchange -> Order Entry -> Enter Buy Amount UserCommonFunctions.SelectAnExchange(driver); UserCommonFunctions.SelectInstrumentFromExchange(instrument, driver); orderEnteryPage.MarketOrderTypeBtn(); orderEnteryPage.EnterBuyAmount(buyMarketOrderAmount); // Verify Fees displayed is in the form of LTC Assert.True(loyaltyTokenPage.GetFeeText()); TestProgressLogger.LogCheckPoint(String.Format(LogMessage.VerifyAppliedFeeIsLTC, buyTab)); TestProgressLogger.LogCheckPoint(String.Format(LogMessage.LoyaltyTokenSuccessMsg, buyTab)); } catch (NoSuchElementException ex) { TestProgressLogger.TakeScreenshot(); TestProgressLogger.LogCheckPoint(ex.Message + ex.StackTrace); TestProgressLogger.LogError(String.Format(LogMessage.LoyaltyTokenFailureMsg, buyTab), ex); throw ex; } catch (Exception e) { TestProgressLogger.TakeScreenshot(); TestProgressLogger.LogCheckPoint(e.Message + e.StackTrace); TestProgressLogger.LogError(String.Format(LogMessage.LoyaltyTokenFailureMsg, buyTab), e); throw e; } finally { TestProgressLogger.EndTest(); } }
public void TC49_VerifyLoyalityFeeBuyMarketOrder() { instrument = TestData.GetData("Instrument"); buyTab = TestData.GetData("BuyTab"); accountID = TestData.GetData("TC49_AccountID"); buyMarketOrderAmount = TestData.GetData("TC49_BuyMarketOrderAmount"); UserFunctions userFuntions = new UserFunctions(TestProgressLogger); AdminFunctions objAdminFunctions = new AdminFunctions(TestProgressLogger); AdminCommonFunctions objAdminCommonFunctions = new AdminCommonFunctions(TestProgressLogger); UserCommonFunctions userCommonFunctions = new UserCommonFunctions(TestProgressLogger); LoyaltyTokenPage loyaltyTokenPage = new LoyaltyTokenPage(TestProgressLogger); OrderEntryPage orderEnteryPage = new OrderEntryPage(driver, TestProgressLogger); try { TestProgressLogger.StartTest(); objAdminFunctions.AdminLogIn(TestProgressLogger); TestProgressLogger.LogCheckPoint(String.Format(LogMessage.AdminLoyaltyFeeCheckStart, accountID)); objAdminCommonFunctions.SelectAccountsMenu(); objAdminCommonFunctions.OpenAccountByIDText(accountID); objAdminCommonFunctions.OpenAccountBtn(); objAdminCommonFunctions.EditInformationButton(); objAdminCommonFunctions.LoyaltyFeeCheckedOrUnchecked(); objAdminCommonFunctions.SaveButton(); TestProgressLogger.LogCheckPoint(String.Format(LogMessage.AdminLoyaltyFeeCheckCompleted, accountID)); objAdminCommonFunctions.UserMenuBtn(); objAdminFunctions.AdminLogOut(); userFuntions.LogIn(TestProgressLogger, Const.USER13); UserCommonFunctions.DashBoardMenuButton(driver); UserCommonFunctions.NavigateToUserSetting(driver); loyaltyTokenPage.LoyaltyTokenButton(driver); loyaltyTokenPage.TradingFeeRadioButton(driver); loyaltyTokenPage.UserSettingMenuButton(driver); TestProgressLogger.LogCheckPoint(LogMessage.SelectLoyaltyTokenSuccess); UserCommonFunctions.SelectAnExchange(driver); UserCommonFunctions.SelectInstrumentFromExchange(instrument, driver); TestProgressLogger.LogCheckPoint(String.Format(LogMessage.VerifyAppliedFeeIsLTC, buyTab)); orderEnteryPage.MarketOrderTypeBtn(); orderEnteryPage.EnterBuyAmount(buyMarketOrderAmount); Assert.True(loyaltyTokenPage.GetFeeText()); TestProgressLogger.LogCheckPoint(String.Format(LogMessage.LoyaltyTokenSuccessMsg, buyTab)); } catch (NoSuchElementException ex) { TestProgressLogger.TakeScreenshot(); TestProgressLogger.LogError(String.Format(LogMessage.LoyaltyTokenFailureMsg, buyTab), ex); throw ex; } catch (Exception e) { TestProgressLogger.TakeScreenshot(); TestProgressLogger.LogError(String.Format(LogMessage.LoyaltyTokenFailureMsg, buyTab), e); throw e; } finally { TestProgressLogger.EndTest(); UserFunctions userFunctionality = new UserFunctions(TestProgressLogger); userFunctionality.LogOut(); } }