GeekInterview.com
Series: Subject: Topic:

Winrunner Interview Questions

Showing Questions 361 - 380 of 382 Questions
First | Prev | | Next | Last Page
Sort by: 
 | 

What type of variables can be used with in the tsl function???

Asked By: madhu | Asked On: Sep 27th, 2005

Answered by: tiger on: Oct 20th, 2005

tiger Wrote: auto , static public,extern variables.auto: An auto variable can be declared only within a function and is local to thatfunction. It exists only for as long as the function is runnin...

Answered by: rashmi ranjan nayak on: Oct 19th, 2005

there are 4 types of variables are used in Win Runner. 1.public2.extern3.static4.auto

What are the test case that we go for automate?What is the process that we go while we are going before automation ? Actually when a release/build is setup in our environment what a tester should do??

Asked By: Shaik | Asked On: Sep 16th, 2005

Plz let me know

Answered by: Gayatri on: Oct 19th, 2005

If there is regression testing or new release is on the way then it is better to go for Automation. Before you make your test scripts automated you need to have automation tool handy, need previous te...

How you will make changes in thousands of automated scripts if interface and functionality of application is changing?

Asked By: Interview Candidate | Asked On: Sep 5th, 2005

Answered by: Anindya S Roy on: Oct 19th, 2005

If there are thousands of scripts and a CR forces all the scripts to modify accordingly, it's always better to create the GUI files again and rerecord the scenarios, where the CRs affects.

How do you update your expected results?

Asked By: Interview Candidate | Asked On: Aug 11th, 2005

Answered by: Mishra on: Oct 4th, 2005

By the help of updating mood

Answered by: raj on: Aug 11th, 2005

by executing the test in update mode

What is candidate release??

Asked By: madhu | Asked On: Sep 27th, 2005

Answered by: shankari on: Oct 3rd, 2005

When a tester has completed the testing of a project and the AUT has been moved to production environment and been accepted by the stakeholders then the tester is released or signed of from the project

How to test the stored procedure???

Asked By: madhu | Asked On: Sep 27th, 2005

Answered by: kulwant kumar Fatehpur Gaya on: Sep 28th, 2005

You first unit-test each procedure by feeding it appropriate test data, observing the outcome, and retesting as needed to make sure the bug fixes contain no new errors. Unit-testing a stored procedure...

How do you execute your tests from windows run command?

Asked By: Interview Candidate | Asked On: Sep 5th, 2004

Answered by: neha on: Sep 26th, 2005

u can execute ur test in c compiler with window run command.as tsl is c based language

How can we remove the data driven wizard script from the existing script ? If there any settings available for this scenario? In winrunner

Asked By: muthukumar | Asked On: Sep 16th, 2005

Answered by: subbu7 on: Sep 23rd, 2005

There is no Wizard to remove DDT, you need to remove manually the following statements

ddt_open, ddt_get_row_count, ddt_set_row, ddt_val, ddt_close

What tsl function you will use to pause your script?

Asked By: Interview Candidate | Asked On: Apr 19th, 2005

Answered by: Mythily on: Sep 12th, 2005

we can also pause the script using pause() command.

Answered by: Rani on: Apr 19th, 2005

wait(time) ----- wait until the given time 
 
 
 
 
 
 
 

What is the use of framework?

Asked By: Interview Candidate | Asked On: Sep 10th, 2005

Answered by: sreevidya on: Sep 9th, 2005

The Template test provides a basic framework of an automated test that navigates through your application. It opens and closes each window, leaving space for you to add code (through recording or prog...

Why choose winrunner , being it is costly tool ?

Asked By: Interview Candidate | Asked On: Jul 29th, 2005

Answered by: lovely on: Jul 29th, 2005

see again it depends on the choice of the end user. If the user feels that the AUT is extensive and could really benefit from using WR and if there are plenty of Versions/Data Driven Test/Regression cycles etc and it could be done with minimal user interaction through WR ,they can go for it..

What is the command in winrunner to get dos prompt?

Asked By: Interview Candidate | Asked On: Jul 25th, 2005

Answered by: Devi Prasannaa on: Jul 25th, 2005

The dos_system function executes a DOS system command from within a WinRunner test script.  
 
dos_system ( expression ); 
 
Example 
 
dos_system("echo dos_system demo > c:demo.tmp"); - writes a line to the file .

How do you run your script with multiple sets of expected results?

Asked By: Interview Candidate | Asked On: Jul 25th, 2005

Answered by: Phani Kumar on: Jul 25th, 2005

this is only one answer 
i.e. through DDT

How do you call a function from external libraries (dll).

Asked By: Interview Candidate | Asked On: Jul 25th, 2005

Answered by: Phani Kumar on: Jul 25th, 2005

if u want call dll file through Winrunner, u should use api controls. it is a special functions

How do you store and view batch test results?

Asked By: Interview Candidate | Asked On: Jul 22nd, 2005

Answered by: Devi Prasannaa on: Jul 22nd, 2005

To store Batch test result  When you run a regular, interactive test, results are stored in a subfolder under the test. The same is true when a test is called by a batch test. WinRunner save...

How do you view and evaluate test results for various check points?

Asked By: Interview Candidate | Asked On: Jun 14th, 2005

Answered by: shreethik on: Jun 14th, 2005

Once the script is executed which has multiple checkpoints, the test results window shows a detailed information of whether the chekpoint passed or failed.As we know, checkpoints compare the expected results with the actual results, we can evaluate the result.

How do you declare external functions in tsl?

Asked By: Interview Candidate | Asked On: Jun 14th, 2005

Answered by: shreethik on: Jun 14th, 2005

External functions are declared using the "extern" declaration that references an external function. 
 
The syntax is: 
extern (parameter1,parameter2....). 
type--> refers to the return type of the function.

How do you load and unload external libraries?

Asked By: Interview Candidate | Asked On: Sep 5th, 2004

Answered by: Mamatha on: May 9th, 2005

load_dll(path name); 
unload_dll(path name);

What is the purpose of wdiff utility?

Asked By: Interview Candidate | Asked On: Apr 11th, 2005

Answered by: Raghu on: Apr 11th, 2005

WDiff v1.49 utility that displays differences between text files in directories (folders) or zip archives.

Answered by: Narendran Gunasekaran on: Mar 14th, 2005

Used for comparing text files

Write and explain various loop command?

Asked By: Interview Candidate | Asked On: Apr 11th, 2005

A for loop instructs winrunner to execute one or more statements a specified number of times. It has the following syntax: for ( [ expression1 ]; [ expression2 ]; [ expression3 ] ) statement i. First, expression1 is executed. Next, expression2 is evaluated. If expression2 is true, statement is...

Answered by: mukesh on: Apr 10th, 2005

_select_item ("File;Open Order..."); 
set_window ("Open Order"); 
button_press ("Cancel"); 
i++; 

First | Prev | | Next | Last Page

 

 

Ads

Connect

twitter fb Linkedin GPlus RSS

Ads

Interview Question

 Ask Interview Question?

 

Latest Questions

Ads

Interview & Career Tips

Get invaluable Interview and Career Tips delivered directly to your inbox. Get your news alert set up today, Once you confirm your Email subscription, you will be able to download Job Inteview Questions Ebook . Please contact me if you there is any issue with the download.