Tab names in the Test Instance Details window
Question ID: 106540
0
0

We have created several tabs in the Test Instance details to organize our fields into categories. However, each tab is just listing as "Page 2", "Page 3", etc. Is there a way to name these tabs to make them more user friendly?

Marked as spam
Posted by (Questions: 122, Answers: 3)
Asked on December 11, 2015 6:54 pm
6 views
Answers (1)
0
Private answer

Sure... You can name them using the GetDetailsPageName function in the Common Script....

Function GetDetailsPageName(PageName,PageNum)
On Error Resume Next
if ActiveDialogName = ''TestSetTests Details'' then
Select case PageNum
case ''1''
GetDetailsPageName=''MyFirstPageName''
case ''2''
GetDetailsPageName=''MySecondPageName''
case ''3''
GetDetailsPageName=''MyThirdPageName''
End Select
end if
On Error GoTo 0
End Function

Marked as spam
Posted by (Questions: 3, Answers: 168)
Answered on December 11, 2015 6:57 pm
EyeOnTesting

Welcome back to "EyeOnTesting" brought to you by Orasi Software, Inc.

X
Scroll to Top