Find Interview Questions for Top Companies
Ques:- What is the difference between childobjects and child items in qtp?
Right Answer:
In QTP (QuickTest Professional), "ChildObjects" refers to a collection of objects that are children of a specified parent object, allowing you to interact with multiple child objects at once. "Child Items," on the other hand, typically refers to individual items within a collection, such as items in a list or dropdown, which can be accessed one at a time.
Ques:- Can u convert ustimings to indian timings using vbscript?
Asked In :- SMC Pneumatics,
Right Answer:
Yes, you can convert U.S. timings to Indian timings using VBScript by adding 10 hours and 30 minutes to the U.S. time. Here’s a sample code snippet:

```vbscript
Function ConvertUSToIndianTime(ustime)
Dim usTime, indianTime
usTime = CDate(ustime)
indianTime = DateAdd("h", 10, usTime) ' Add 10 hours
indianTime = DateAdd("n", 30, indianTime) ' Add 30 minutes
ConvertUSToIndianTime = indianTime
End Function

' Example usage
Dim usTime
usTime = "12:00 PM" ' U.S. time
WScript.Echo ConvertUSToIndianTime(usTime)
```
This function takes a U.S. time as input and returns the corresponding Indian time.
Ques:- Can anyone pls tell me how to do action parameterization (input and output parameters) with respect to login window and insert order of flight reservation window in detail( pls give a clear step by step explanation with example) anyone please. Will be very thankful to u
Asked In :-
Right Answer:
To perform action parameterization for a login window and insert order in a flight reservation system, follow these steps:

### Step 1: Create a New Action
1. Open your automation tool (e.g., UFT/QTP).
2. Create a new action for the login functionality.
3. Name it `LoginAction`.

### Step 2: Define Input Parameters
1. In the `LoginAction`, go to the action properties.
2. Add input parameters, e.g., `username` and `password`.

### Step 3: Write the Login Script
1. Use the input parameters in your script:
```vbscript
Browser("FlightReservation").Page("LoginPage").WebEdit("username").Set username
Browser("FlightReservation").Page("LoginPage").WebEdit("password").Set password
Browser("FlightReservation").Page("LoginPage").WebButton("Login").Click
```

### Step 4: Create Another Action for Insert Order
Ques:- Wt is automation framework? give explonation?
Right Answer:
An automation framework is a set of guidelines, tools, and best practices that provide a structured approach to automate testing processes. It includes components like libraries, test scripts, and reporting mechanisms, which help streamline the testing process, improve code reusability, and enhance maintainability of automated tests.
Ques:- What is the Difference between the versions of WinRunner7.1 and WinRunner7.6? What r the advantages of WR7.6 than WR 7.1 and Which type of Browsers they support?
Right Answer:
WinRunner 7.6 introduced several enhancements over WinRunner 7.1, including improved support for web applications, better integration with other testing tools, and enhanced test script maintenance features. WR 7.6 supports more modern browsers compared to WR 7.1, including Internet Explorer 5.5 and later versions, while WR 7.1 primarily supports earlier versions of Internet Explorer. Additionally, WR 7.6 offers better debugging capabilities and a more user-friendly interface.
Ques:- What is mean by data base testing?explain with example?
Right Answer:
Database testing is the process of verifying the integrity, accuracy, and consistency of data in a database. It involves checking the data stored in the database against the expected results, ensuring that data is correctly inserted, updated, deleted, and retrieved.

For example, if a user registers on a website, database testing would involve checking that the user's information is correctly saved in the database, that the data can be retrieved accurately, and that any updates to the user's information reflect correctly in the database.
Ques:- What r the client requirements? when u r running the scriptin Vugen?
Right Answer:
Client requirements when running the script in VuGen typically include:

1. **Performance Goals**: Desired response times and throughput.
2. **User Load**: Number of virtual users to simulate.
3. **Test Scenarios**: Specific user actions or workflows to be tested.
4. **Environment Setup**: Configuration of the testing environment.
5. **Data Requirements**: Any specific data needed for the tests.
6. **Reporting Needs**: Format and details required in the test reports.
Ques:- What is database check points? how many types are there?Explain?
Asked In :-
Right Answer:
Database checkpoints are a way to verify that the data in a database is correct and meets certain criteria during automated testing. They help ensure that the application interacts with the database as expected.

There are generally two types of database checkpoints:

1. **Static Checkpoints**: These verify that specific data in the database matches expected values at a certain point in time.

2. **Dynamic Checkpoints**: These check the data in the database based on certain conditions or queries, allowing for validation of data that may change over time.
Ques:- Can u Explain me in real time projects any frameworks follows in Loadrunner ? if Yes plz mentiond(Chandana)
Right Answer:
In real-time projects using LoadRunner, common frameworks include:

1. **Vuser Script Framework**: This framework organizes scripts into logical sections for better management and reusability.
2. **Parameterization Framework**: This allows for dynamic data handling by replacing hard-coded values with parameters.
3. **Correlation Framework**: This handles dynamic values returned by the server, ensuring that scripts can adapt to changing data.
4. **Error Handling Framework**: This framework captures and manages errors during test execution to improve reliability.

These frameworks help in creating efficient and maintainable performance testing scripts.
Ques:- What are Recoring modea available in winrunner?
Right Answer:
The recording modes available in WinRunner are:

1. **Normal Mode** - Records all user actions.
2. **Analog Mode** - Records mouse movements and keyboard actions in a precise manner.
3. **Context-Sensitive Mode** - Records actions based on the context of the application being tested.
Ques:- Explain keyword driven framework?
Right Answer:
A keyword-driven framework is a test automation approach that uses a set of predefined keywords to represent actions or operations in the test scripts. Each keyword corresponds to a specific function or command, allowing testers to create test cases using these keywords without needing to write code. This framework separates the test logic from the test execution, making it easier for non-technical users to create and maintain tests.
Ques:- How can you write a script without using GUI in QTP?
Right Answer:
You can write a script without using the GUI in QTP (QuickTest Professional) by using the keyword-driven or data-driven approach, or by directly editing the script in the VBScript editor. You can also create and run scripts using the QTP command line interface or by using a text editor to write the VBScript code and then executing it through QTP.
Ques:- What is the difference between “invoke_application” and “web_browser_invoke” functions in winrunner
Right Answer:
The `invoke_application` function is used to launch and control desktop applications, while the `web_browser_invoke` function is specifically designed to open and control web browsers for testing web applications.
Ques:- What is the basic knowledge required to work in BFSI domain ?
Right Answer:
To work in the BFSI (Banking, Financial Services, and Insurance) domain, one should have basic knowledge of financial products, banking operations, regulatory compliance, risk management, and an understanding of financial markets and instruments. Familiarity with software testing principles and automation tools relevant to this sector is also essential.
Ques:- How can we Read the data from data grid in Silk Test?
Asked In :- samsung sdi, verinite,
Right Answer:
To read data from a data grid in SilkTest, you can use the `GetCellData` method. For example:

```silktest
string cellData = DataGrid.GetCellData(rowIndex, columnIndex);
```

Replace `rowIndex` and `columnIndex` with the appropriate indices to access the desired cell data.
Ques:- What is sychronization point in qtp how u put in yr application when it is put wat is its use how it is useful
Right Answer:
A synchronization point in QTP (QuickTest Professional) is a feature that allows the test to wait for a specific condition to be met before proceeding. You can set a synchronization point in your application by using the `Wait` method or by inserting a synchronization checkpoint in the test script. Its use is to ensure that the application is in the correct state (e.g., a specific object is loaded or a certain value is displayed) before the next step of the test is executed, which helps prevent errors due to timing issues.
Ques:- Is Winrunner 7.01 supports .NET applications?
Asked In :-
Right Answer:
No, WinRunner 7.01 does not support .NET applications.
Ques:- What are the functions generate when u use GUI Checkpoint?give me some of ones?
Right Answer:
When you use a GUI Checkpoint, it generates functions to verify the properties of GUI objects. Some of these functions include:

1. `Checkpoint("ObjectName")` - Verifies the state of a GUI object.
2. `ObjectProperty("PropertyName")` - Checks a specific property of the GUI object.
3. `Compare("ExpectedValue", "ActualValue")` - Compares expected and actual values for validation.
4. `GetText("ObjectName")` - Retrieves the text from a GUI object for verification.
Ques:- How to capture data from images in QTP and produce them inExcel sheet ? please ans…
Right Answer:
To capture data from images in QTP (QuickTest Professional) and produce them in an Excel sheet, follow these steps:

1. Use the `Image` checkpoint in QTP to verify the image.
2. Utilize the `OCR` (Optical Character Recognition) capabilities in QTP to extract text from the image.
3. Store the extracted text in a variable.
4. Use the `Excel.Application` object to create or open an Excel file.
5. Write the extracted data into the desired cells in the Excel sheet using the `Cells` property.
6. Save and close the Excel file.

Here’s a sample code snippet:

```vbscript
Set excelApp = CreateObject("Excel.Application")
Set workbook = excelApp.Workbooks.Add
Set worksheet = workbook.Worksheets(1)

' Assuming OCR is used to extract text from an image
extractedText = OCRFunction("path_to_image")

' Write extracted text to Excel
worksheet.Cells(1, 1).


The Automation section on takluu.com is designed for professionals and aspirants aiming to build a career in automation testing and DevOps. Automation has become a cornerstone in modern software development, enabling faster release cycles, higher quality, and reduced manual effort.

This category covers essential automation concepts including test automation frameworks, scripting languages, continuous integration tools, and deployment pipelines. You’ll find detailed tutorials and interview questions on popular tools like Selenium WebDriver, QTP/UFT, Jenkins, Appium, Cucumber, and Robot Framework.

Our content emphasizes practical knowledge — from writing efficient test scripts to integrating automated tests into CI/CD pipelines. We also cover best practices for test case design, debugging automation scripts, handling dynamic elements, and generating test reports.

Automation interviews often test both your technical skills and your understanding of software development lifecycles. This section prepares you with scenario-based questions, real interview experiences, and step-by-step solutions to common problems.

Whether you’re applying for roles such as Automation Tester, QA Engineer, DevOps Engineer, or Test Lead, this section equips you with the knowledge to stand out. Alongside technical topics, you’ll also find insights on collaboration between development and testing teams, and the importance of automation in Agile environments.

At Takluu, we focus on bridging the gap between theory and practice, helping you learn automation skills that are in high demand and ready to be applied from day one.

AmbitionBox Logo

What makes Takluu valuable for interview preparation?

1 Lakh+
Companies
6 Lakh+
Interview Questions
50K+
Job Profiles
20K+
Users