Exemplo n.º 1
0
 public void WhenNavigateToTheRevenueRecordFor(string constituent)
 {
     try
     {
         constituent += uniqueStamp;                                        //The unique stamp is a series of numbers to keep constituents different from each other
         BBCRMHomePage.OpenRevenueFA();                                     //Open revenue functional area
         RevenueFunctionalArea.TransactionSearchByConstituent(constituent); //search for transactions by constituent
     }
     catch (Exception ex)
     {
         throw new Exception("Error: could not navigate to the revenue record for selected constituent. " + ex.Message);
     }
 }
Exemplo n.º 2
0
 public void WhenNavigateToTheRevenueRecordFor(string constituent)
 {
     constituent += uniqueStamp;
     BBCRMHomePage.OpenRevenueFA();
     RevenueFunctionalArea.TransactionSearchByConstituent(constituent);
 }