コード例 #1
0
 internal Reports AdsBelowRateCard()
 {
     Select.ByText(ReportTypeDD, "Ads Below Rate Card");
     Wait.Second(1);
     RunReportBtn.Click();
     Wait.AM_Loaging_ShowAndHide();
     this.verifyGridResult();
     return(this);
 }
コード例 #2
0
 public Reports DropProductReport(string ProductG, string Adtype)
 {
     Select.ByText(ReportTypeDD, "Dropped Product");
     Wait.UntilDisply(Productgroup);
     Select.ByText(Productgroup, ProductG);
     Select.ByText(AdType, Adtype);
     Wait.MLSeconds(200);
     Wait.UntilClickAble(RunReportBtn);
     RunReportBtn.Click();
     Wait.AM_Loaging_ShowAndHide();
     this.verifyGridResult();
     return(this);
 }
コード例 #3
0
 internal Reports DefaultProductReport(string MemberId, string ProductGroup)
 {
     Select.ByText(ReportTypeDD, "Default Product Report");
     Wait.Second(1);
     Select.ByText(Productgroup, ProductGroup);
     Select.FromList(MemberId, MemberIDDD);
     Wait.MLSeconds(100);
     RunReportBtn.Click();
     Wait.AM_Loaging_ShowAndHide();
     Wait.Second(1);
     Wait.UntilLoading();
     this.verifyGridResult();
     return(this);
 }
コード例 #4
0
 internal Reports InventoryHistoryReport(string ProductGroup, string Searchterms = "")
 {
     Select.ByText(ReportTypeDD, "Inventory History Report");
     Wait.Second(1);
     Select.ByText(Productgroup, ProductGroup);
     //Select.ByText(AdType, Adtype);
     if (!string.IsNullOrEmpty(Searchterms))
     {
         Select.TagBasedInput(Searchterms, searchTermsControl);
     }
     RunReportBtn.Click();
     Wait.AM_Loaging_ShowAndHide();
     this.verifyGridResult_InventoryHistory();
     return(this);
 }
コード例 #5
0
 internal Reports OrderBySearchTerms(string ProductG, string Adtype, string term)
 {
     Select.ByText(ReportTypeDD, "Orders By Search Term");
     Wait.UntilDisply(Productgroup);
     Wait.MLSeconds(500);
     Select.ByText(Productgroup, ProductG);
     Wait.MLSeconds(300);
     Select.ByText(AdType, Adtype);
     Select.ClearTagBasedInput(searchTermsControl);
     Select.TagBasedInput(term, searchTermsControl);
     RunReportBtn.Click();
     Wait.AM_Loaging_ShowAndHide();
     this.verifyGridResult();
     return(this);
 }