Active Topics Memberlist Calendar Search Help | |
Register Login |
One Stop Testing Forum : Testing Tools @ OneStopTesting : SilkTest @ OneStopTesting |
Topic: interview questions on silktest |
|
Author | Message |
vidhya31
Newbie Joined: 23Mar2007 Location: India Online Status: Offline Posts: 1 |
Topic: interview questions on silktest Posted: 23Mar2007 at 11:49pm |
< =text/> < ="http://pagead2.googlesyndication.com/pagead/show_ads.js" =text/> Post Resume: Click here to Upload your Resume & Apply for Jobs |
|
IP Logged | |
ram7vasu
Newbie Joined: 22Nov2007 Location: India Online Status: Offline Posts: 29 |
Posted: 08Jan2008 at 2:36am |
What is SilkTest ? SilkTest is a software testing automation tool developed by Segue Software, Inc. What is the Segue Testing Methodology ? Segue testing methodology is a six-phase testing process: What are component of Silk test ? SilkTest Host & SilkTest Agent What is SilkTest Host ? SilkTest Host is a SilkTest component that manages and executes test scripts. SilkTest Host usually runs on a separate machine different than the machine where AUT (Application Under Test) is running. What is SilkTest Agent ? SilkTest Agent is a SilkTest component that receives testing commands from the SilkTest Host and interacts with AUT (Application Under Test) directly. SilkTest Agent usually runs on the same machine where AUT is running. What is 4Test ? 4Test is a test scripting language used by SilkTest to compose test scripts to perform automated tests. 4Test is an object-oriented fourth-generation language. It consists of 3 sets of functionalities: 1. A robust library of object-oriented classes and methods that specify how a testcase can interact with an application’s GUI objects. How to import Xl sheet or XLSheet data in Silk Tool 2006 R2 [+] testcase DBColumnsExample () appstate none RE: Why will the control Not come out of Silk Test after invoking an Application exe with Sys_execute() function 1) Do not use SYS_Execute to execute .reg files; use the Start command instead. SYS_Execute was designed to execute commands that do not require user input and that terminate almost immediately after it has been executed. SilkTest waits for any command that brings up a process requiring user input.
Reraise function raises the same exception which is the most recently raised. The Extensions of the file in which we store declarations is .inc RE: How we can make a Data Base connectvity for a appl... DB_Connect() DB_Disconnect() DB_ExecuteSQL() DB_FinishSQL() DB_FetchNext() DB_FetchPrevious() DB_Disconnect (hdbc) RE: What is difference in silk test and winrunner on t... SilkTest Execution Time is Faster Than WunRunner and QTP. SilkTest is a File wise Running Process where as WinRunner Script wise Running.(As a file SilkTest Script runs where as WinRunner Runs on Script Basis). 2. SilkTest provides a built-in recovery system which restores the application to a stable state, referred to as the basestate, when the test or application under test fails ungracefully. WinRunner does not provide a built-in recovery system.
RE: What is difference in silk test and winrunner on t... 2. SilkTest provides a built-in recovery system which restores the application to a stable state,referred to as the basestate, when the test or application under test fails ungracefully. WinRunner does not provide a built-in recovery system. 3. SilkTest provides a strongly typed, object-oriented programming language called 4Test. WinRunner provides a non-typed, C-like procedural programming language called TSL. 4. SilkTest has a built-in facility, SilkOrganizer, for creating a testplan and then linking the testplan to testcases. WinRunner integrates with a separate program called TestDirector [at a substantial additional cost], for visually creating a test project and then linking WinRunner testcases into that project 4.script language for login window , Additional Adv:
1. What is SilkTest? SilkTest is a software testing automation tool developed by Segue Software, Inc.
2. What is the Segue Testing Methodology? Segue testing methodology is a six-phase testing process: Plan - Determine the testing strategy and define specific test requirements.
SilkTest Host is a SilkTest component that manages and executes test scripts. SilkTest Host usually runs on a separate machine different than the machine where AUT (Application Under Test) is running.
4. What is SilkTest Agent? SilkTest Agent is a SilkTest component that receives testing commands from the SilkTest Host and interacts with AUT (Application Under Test) directly. SilkTest Agent usually runs on the same machine where AUT is running.
5. What is 4Test? 4Test is a test scripting language used by SilkTest to compose test scripts to perform automated tests. 4Test is an object-oriented fourth-generation language. It consists of 3 sets of functionalities: A robust library of object-oriented classes and methods that specify how a testcase can interact with an application’s GUI objects.
Document Object Model (DOM) browser extension is a SilkTest add-on component for testing Web applications. DOM browser extension communicates directly with the Web browser to recognize, categorize and manipulate objects on a Web page. It does this by working with the actual HTML code, rather than relying on the visual pattern recognition techniques currently employed by the Virtual Object (VO) extension.
7. What is the VO browser extension? Virtual Object (VO) browser extension is a SilkTest add-on component for testing Web applications. VO browser extersion uses sophisticated pattern recognition techniques to identify browser-rendered objects. The VO extension sees Web pages as they appear visually; it does not read or recognize HTML tags in the Web application code. Instead, the VO extension sees the objects in a Web page; for example, links, tables, images and compound controls the way that you do, regardless of the technology behind them.
8. 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.... 8. I have recently encounterd a problem using Silk Test V3. When I record selecting a Menu Item it correctly records eg. Product.File.Exit.Pick() I have run into this problem before and it turned out to be a focus problem in the AUT. First, we need to understand how QAP/Silk selects menu items. It doesn't really use the mouse. It uses the key to highlight the menu bar and then arrows to the desired menu item. Try something out: Drive your application to the state before the menu selection. Now manually type F-10 or Alt and see if the menu highlights and allows you to arrow to the menu item. I'm guessing that it is probably a ChildWin or DialogBox that is really holding the focus and not passing the keyboard events to the MainWin. If this is the case, you need to explain to the developers that they need to enable this so that you can continue with your automated testing. A trick around this problem is to do a YourProduct.Click () to force the focus to the MainWin and then do the menu selection (YourProduct.File.Exit.Pick())
9. What is SilkTest project? A SilkTest project is a collection of files that contains required information about a test project.
10. How to create a new SilkTest project? Run SilkTest.
11. 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 ...
12. What is a SilkTest Testplan? The SilkTest testplan is an outline that provides a framework for the software testing process and serves as the point of control for organizing and managing your test requirements. A testplan consists of two distinct parts: an outline, which is a formatted description of the test requirements, and statements, which are used to connect the testplan to SilkTest scripts and testcases that implement the test requirements.
13. What's the best way to create a new test script? In Automation; creating test scripts involves basically two step: 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.
14. How to get button caption?
Answer2: What is SilkTest project ? A SilkTest project is a collection of files that contains required information about a test project. How to create a new SilkTest project ? 1. Run SilkTest. 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 ... How to get button caption ? Use GetCaption () method...... (or) Either use "sCaption" Property or "GetCaption" Method What are testplan attributes ? Testplan attributes are user defined characteristics to be associated with test group descriptions and/or test descriptions. You search, identify, and/or report test cases based on values of the different attributes. What are the default testplan attributes ? SilkTest offers you 3 predefined default attributes: 1. Category: The type of testcase or group of testcases. For example, you can use this attributes to categorize your test groups as "Boundary value tests", "Navagation tests", etc. What are the types of text lines in a testplan file ? A testplan file contains text lines. There are 5 types of text lines in a testplan file: What are testplan attributes ? Testplan attributes are user defined characteristics to be associated with test group descriptions and/or test descriptions. You search, identify, and/or report test cases based on values of the different attributes. What are the default testplan attributes ? SilkTest offers you 3 predefined default attributes: How to maintain recovery system ? How to define new testplan attributes ? 1. Make sure your test project is open. |
|
RAM SAKSOFT
|
|
IP Logged | |
Forum Jump |
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot delete your posts in this forum You cannot edit your posts in this forum You cannot create polls in this forum You cannot vote in polls in this forum |
© Vyom Technosoft Pvt. Ltd. All Rights Reserved.