diff options
Diffstat (limited to 'testautomation/dbaccess/required/includes')
-rwxr-xr-x | testautomation/dbaccess/required/includes/MainApp.inc | 10 | ||||
-rwxr-xr-x | testautomation/dbaccess/required/includes/ReportBuilder01.inc | 14 |
2 files changed, 12 insertions, 12 deletions
diff --git a/testautomation/dbaccess/required/includes/MainApp.inc b/testautomation/dbaccess/required/includes/MainApp.inc index faecfe598b11..64d8f4f86fd6 100755 --- a/testautomation/dbaccess/required/includes/MainApp.inc +++ b/testautomation/dbaccess/required/includes/MainApp.inc @@ -378,13 +378,13 @@ testcase tMainMenuBar end if call hMenuClose() - '/// check if there are 9 items in the tools menu. - printlog "check if there are 9 items in the tools menu." + '/// check if there are 10 items in the tools menu. + printlog "check if there are 10 items in the tools menu." Insight.UseMenu hMenuSelectNr(5) iCount = hMenuItemGetCount() - if (iCount <> 9) then - warnlog "There should 9 items in the tools menu but there are " + iCount + " items." + if (iCount <> 10) then + warnlog "There should 10 items in the tools menu but there are " + iCount + " items." end if call hMenuClose() @@ -392,7 +392,7 @@ testcase tMainMenuBar printlog "check if there are 4 items in the TOOLS/MACRO menu." Insight.UseMenu hMenuSelectNr(5) - hMenuSelectNr(5) + hMenuSelectNr(6) iCount = hMenuItemGetCount() if (iCount <> 4) then warnlog "There should 4 items in the TOOLS/MACRO menu but there are " + iCount + " items." diff --git a/testautomation/dbaccess/required/includes/ReportBuilder01.inc b/testautomation/dbaccess/required/includes/ReportBuilder01.inc index 62902a9faf0c..fc60c5d3f635 100755 --- a/testautomation/dbaccess/required/includes/ReportBuilder01.inc +++ b/testautomation/dbaccess/required/includes/ReportBuilder01.inc @@ -114,13 +114,13 @@ testcase tMainMenuBar 'edit menu - '/// check if there are 12 items in the edit menu. - printlog "check if there are 12 items in the edit menu." + '/// check if there are 11 items in the edit menu. + printlog "check if there are 11 items in the edit menu." ReportDesign.UseMenu hMenuSelectNr(2) iCount = hMenuItemGetCount() - if (iCount <> 12) then - warnlog "There should 12 items in the edit menu but there are " + iCount + " items." + if (iCount <> 11) then + warnlog "There should 11 items in the edit menu but there are " + iCount + " items." end if call hMenuClose() @@ -323,7 +323,7 @@ testcase tExecuteReport Kontext "ReportDesign" ReportDesign.UseMenu hMenuSelectNr(2) - hMenuSelectNr(12) + hMenuSelectNr(11) sleep(10) @@ -475,7 +475,7 @@ testcase tGroupingSorting Kontext "ReportDesign" ReportDesign.UseMenu hMenuSelectNr(3) - hMenuSelectNr(5) + hMenuSelectNr(4) '/// check if the sorting and grouping dialog appear printlog "check if the sorting and grouping dialog appear" @@ -526,7 +526,7 @@ testcase tReportNavigator Kontext "ReportDesign" ReportDesign.UseMenu hMenuSelectNr(3) - hMenuSelectNr(6) + hMenuSelectNr(5) '/// check if the report navigator appear printlog "check if the report navigator appear" |