ivan_sy
12 years agoContributor
KeywordTest runs script routine that uses its variables if it exists
I am looking for a way to standardize our Keyword Test to have the following variables as part of our test script development process
TC_NUM
TC_DESC
obviously, to provide the equivalent test case number and its description...
I made a common routine to push the indicator text, but what I wish is that the designers of this keyword test will will only create TC_NUM and TC_DESC variables (On the Keyword designer) and copy-paste the Run Routine lines from a template without editing the KeywordTest lines.
Sub ShowIndicator()
` if there two variables of the KeywordTest that calls this routine exists then..
Indicator.Show
Indicadtor.PushText(TC_NUMvariable + TC_DESCvariable)
' end if
End Sub
TC_NUM
TC_DESC
obviously, to provide the equivalent test case number and its description...
I made a common routine to push the indicator text, but what I wish is that the designers of this keyword test will will only create TC_NUM and TC_DESC variables (On the Keyword designer) and copy-paste the Run Routine lines from a template without editing the KeywordTest lines.
Sub ShowIndicator()
` if there two variables of the KeywordTest that calls this routine exists then..
Indicator.Show
Indicadtor.PushText(TC_NUMvariable + TC_DESCvariable)
' end if
End Sub