I'm involved in automation using silk test of an swing
application running in a browser. There is a window whose
name is a dynamic. i.e based on the input(eg: some
filename) the window name keeps on changing. I need to
capture the window name for every run of silk test case for
different input filenames. I'm aware of GetName() in
SilkTest, but its not working for me. Can anybody suggest
me any logic to achieve this using silktest?
Answers were Sorted based on User's Feedback
In Silk Test there is a function called Browser.GetActive()
This function returns the title of the active window.
Whenever your dynamic window opens up make sure it is active
by closing all other browsers if any using the
Browser.closeOthers() function. Then use the getActive
function to return the window name which is your required
output.
| Is This Answer Correct ? | 2 Yes | 2 No |
Answer / knk
Since based on the input we give (say variable sInput), the window appears, Its better to write descriptive code by giving the property of the window as the input you have given previously i.e (sInput) and activating the window with setactive() method.
| Is This Answer Correct ? | 0 Yes | 1 No |
How to include a test case into a testplan?
How to do text verification point in silktest for a specific content.Suppose in the text editor, i have typed some "aaaa,bbbb,cccc,dddd" in different lines. now i want to capture only aaaa of first line from the text editor. How can i do it.Can any one help me.
what is the use of exception handling in Silk Test and how to use the commands?
What are the default testplan attributes?
How do you identify an exception is silk?
Can we customise the result file?
Can silktest run on mac?
what is DON in SILK?
How to open an existing silktest project?
What statement in for test is used to transfer control of the script out of the innermost nested for, for each, while switch or selected statement?
How to define an object verification in a test case?
What is multi-tagging?