6 :: How to close unexpected window?
You meant to say one more browser window (Order Request) appearing apart from original window (Order Status)?Answer1
If Order Request window is a popup.
Following code closes the active browser window if it is a popup:
[-] !(if Browser.ComboBox("#1").exists())
[ ] Browser.SetActive()
[ ] Browser.typekeys("")
Answer2
If Order Request window is a Browser window.(not a popup)
You can use the following code to close unwanted Browsers(like Order Request)
Order_Status.SetActive()
Browser.CloseOthers()
|
7 :: What is the best way to create a new test script?
In Automation; creating test scripts involves basically two step:1. Creating Test Data for all test cases.
2. Writing scripts for automating the test cases.
The first steps, is the outcome of analysis of what all data is required for all of your testcases to be executed. These all should be collected and scripts to be written so that TEST DATA is ready.
The second steps, is basically the test case execution steps automation.
|
8 :: Is There any function for word count of web page is available in the SilkTest?
You can use Clipboard functions. Get All the contents by Ctrl+a & ctrl+C. Then parse the List of sting ...
|
9 :: What is SilkTest project?
A SilkTest project is a collection of files that contains required information about a test project.
|
10 :: Is there any problem in using scripts created on v6.0 to 6.5 or higher versions?
Moving from lower to higher version should not be a problem....This is a general statement and cannot be true at all instances.
I faced problems with scripts working in 6.5 not running in 7.0 because some of the recognition patterns used each changed. And in some situations, finally landed two paths of the script to perform same action based on version.
PS: Did not encounter any problems from 6.0 to 6.5.
|




Webmaster Said:
Thank you.