Exemple #1
0
 public void TestPQAReportLaneSummaryColumnHeaderRotation()
 {
     TestCaseExternalID = "CGN-24";
     String[] orientations = { "Vertical", "Automatic", "Horizontal" };
     for (int index = 0; index < orientations.Length; index++)
     {
         ReportWizardSectionFormatting.LoadReportWizard();
         ReportWizardSectionFormatting.LoadSectionFormattingTab();
         ReportWizardSectionFormatting.SelectSectionToFormat();
         ReportWizardSectionFormatting.DefineColumnHeaderRotation(orientations[index]);
         ReportWizardReportOptions.ApplyWizardChanges();
     }
 }
Exemple #2
0
        public void TestPQAReportLaneSummaryFlipRowsAndColumns()
        {
            TestCaseExternalID = "CGN-26";
            ReportWizardSectionFormatting.LoadReportWizard();
            ReportWizardSectionFormatting.LoadSectionFormattingTab();
            ReportWizardSectionFormatting.SelectSectionToFormat();
            ReportWizardSectionFormatting.FlipRowsAndColumns(true);
            ReportWizardReportOptions.ApplyWizardChanges();

            ReportWizardSectionFormatting.LoadReportWizard();
            ReportWizardSectionFormatting.LoadSectionFormattingTab();
            ReportWizardSectionFormatting.SelectSectionToFormat();
            ReportWizardSectionFormatting.FlipRowsAndColumns(false);
            ReportWizardReportOptions.ApplyWizardChanges();
        }
Exemple #3
0
        public void TestPQAReportLaneSummaryDisplayTotals()
        {
            TestCaseExternalID = "CGN-25";
            ReportWizardSectionFormatting.LoadReportWizard();
            ReportWizardSectionFormatting.LoadSectionFormattingTab();
            ReportWizardSectionFormatting.SelectSectionToFormat();
            ReportWizardSectionFormatting.DisplayTotals(true);
            ReportWizardReportOptions.ApplyWizardChanges();

            ReportWizardSectionFormatting.LoadReportWizard();
            ReportWizardSectionFormatting.LoadSectionFormattingTab();
            ReportWizardSectionFormatting.SelectSectionToFormat();
            ReportWizardSectionFormatting.DisplayTotals(false);
            ReportWizardReportOptions.ApplyWizardChanges();
        }
        public void TestPQAReportLaneSummaryHighlightRows()
        {
            TestCaseID = "CGN-23";
            ReportWizardSectionFormatting.LoadReportWizard();
            ReportWizardSectionFormatting.LoadSectionFormattingTab();
            ReportWizardSectionFormatting.SelectSectionToFormat();
            ReportWizardSectionFormatting.HighlightRows(true);
            ReportWizardReportOptions.ApplyWizardChanges();

            ReportWizardSectionFormatting.LoadReportWizard();
            ReportWizardSectionFormatting.LoadSectionFormattingTab();
            ReportWizardSectionFormatting.SelectSectionToFormat();
            ReportWizardSectionFormatting.HighlightRows(false);
            ReportWizardReportOptions.ApplyWizardChanges();
        }