Rational TestSuite Job Interview
Questions And Answers
Interview Questions Answers
[Link]
About Interview Questions Answers
Interview Questions Answers . ORG is an interview preparation guide of thousands of Job
Interview Questions And Answers, Job Interviews are always stressful even for job seekers who have
gone on countless interviews. The best way to reduce the stress is to be prepared for your job
interview. Take the time to review the standard interview questions you will most likely be asked.
These interview questions and answers on Rational TestSuite will help you strengthen your technical
skills, prepare for the interviews and quickly revise the concepts.
If you find any question or answer is incorrect or incomplete then you can submit your question or
answer directly with out any registration or login at our website. You just need to visit Rational
TestSuite Interview Questions And Answers to add your answer click on the Submit Your Answer
links on the website; with each question to post your answer, if you want to ask any question then you
will have a link Submit Your Question; that's will add your question in Rational TestSuite category.
To ensure quality, each submission is checked by our team, before it becomes live. This Rational
TestSuite Interview preparation PDF was generated at Saturday 4th February, 2017
You can follow us on FaceBook for latest Jobs, Updates and other interviews material.
[Link]/[Link]
Follow us on Twitter for latest Jobs and interview preparation guides.
[Link]
If you need any further assistance or have queries regarding this document or its material or any of
other inquiry, please do not hesitate to contact us.
[Link]
Best Of Luck.
Interview Questions [Link] Team
[Link]
Support@[Link]
Rational TestSuite Interview Questions And Answers
In
te
Rational TestSuite Interview Questions And Answers Guide.
rv
ie
w
Q
Question - 1:
How to record & run on Japanese language application using English version of IBM?
ue
Ans:
As a Spanish Language Specialist, i test(record and run)
the application as same as i do it in English. The only
st
difference is you should know the language to debug the
issues if you come accross any.
View All Answers
io
Question - 2:
What is RTRT?
ns
Ans:
RTRT means "Rational Test Real Time" an IBM product which
used to test the real time "Embedded Systems" of an
application, and the most important point is to check the
A
program whether it is working properly as per client
requirement.
And it having two types of testing
ns
[Link] (Unit Testing)
[Link] (Software Integration)
View All Answers
w
Question - 3:
What is the use of "TestObject root = getRootTestObject();" in RFT?
er
Ans:
TestObject root = getRootTestObject()
s.
getRootTestObject point to the top most object in the
hierarchy of the page which is browser using this you are
going to indentify the object under it.
O
View All Answers
R
Question - 4:
Explain purpose of inserting delay values in the scripts of Rational?
G
Ans:
wait values are useful when the application requires an
unknown amount of time to complete a task. Using a wait
value keeps the verification point from failing if the task
is not completed or if the data is not accessible right
away.
View All Answers
Question - 5:
What is the use of [Link] file in Rational?
Ans:
Robot provides [Link] file for the convinience of the
[Link] a blank library source [Link] can add procedures
to it or make your own
View All Answers
Copyright © [Link] Page 3/7
Rational TestSuite Interview Questions And Answers
Question - 6:
What is the purpose of the wait state?
Ans:
In
Wait statement is used for synchronization.
WR simply waits the specified amount of time, whether the
application is completed its operation or not.
Ex: suppose if one operation takes varible amount of time,
te
inorder to synchronize between WR and application we use
wait statement.
wait(secs.) wait(20)
rv
Here, WR waits 20 seconds even the operation completes in 5
secs.
View All Answers
ie
Question - 7:
w
What is the purpose of break point?
Ans:
we can use breakpoints to help debug our test scripts. A
Q
breakpoint stops a test run at a specified line in the test
script, or in a specified function. You may want to stop a
test run using a breakpoint in order to:
ue
[Link] the entries in the Watch List
[Link] stepping through a test script using the Step commands
View All Answers
st
Question - 8:
How to test Java Applications and what settings you need to do?
io
Ans:
To open java application for testing In robot click Insert>>
in that click Start Java Application..>> give path of java
ns
appl.
For Java we have to enable the applications as follows,
!)Run the java Enabler to have it scan your hard drive for
java environment such as web browsers& sun JDK
installations that Robot [Link] Java Enabler only
A
enables those environments that are currently installed.
View All Answers
ns
Question - 9:
For unattended execution which playback options you will use?
w
Ans:
Something like this
[Link] <path [Link] file> /project <path to .project
er
file> /play /close
View All Answers
s.
Question - 10:
How to analyze results after playback?
O
Ans:
test manager opens the result window with appropriate
R
comparator.
View All Answers
G
Question - 11:
What is the purpose of comparators in analyzing the results?
Ans:
we can analyze the pass/fail status of verification points
in Comparators. simply the results will be analyzed. In
comparators actual results are compared with baseline (expected behavior).
View All Answers
Question - 12:
Explain Datapool?
Ans:
A datapool is a test dataset, a collection of related data
records which supplies realistic data values to the
variables in a test script during test script playback.
Copyright © [Link] Page 4/7
Rational TestSuite Interview Questions And Answers
You can create data from scratch or import existing data
into a new datapool from another Functional Test datapool,
an IBM Rational TestManager datapool, or a .csv file.
View All Answers
In
Question - 13:
How to do data driven testing using Robot?
te
Ans:
We can do Data Driven Testing using Datapools...
rv
Create Datapools through Test Manager...
Create Datapool to use variable data during Run time...
View All Answers
ie
Question - 14:
w
Explain What kind of problems are solved by Datapools?
Ans:
Following are the problems that are solved by Datapools :
Q
1. To provide data to the application which accept only unique data in each iteration to avoid already exist error ie. application that receives unique data only as
input.
2. To provide data to the applications which deletes data from the database. If data is same and it is deleted in first iteration then it will give no data found error in
ue
subsequent iterations.
3. To provide unique data in performance testing so that application performance can be evaluated as per real time scenario.
View All Answers
st
Question - 15:
What is the planning and creating datapool?
io
Ans:
A datapool is a test dataset that supplies data variables
in a test script during playback. Using datapools allows
ns
you to run multiple iterations of a script using different
data each time.
Sub Main
Dim Result As Integer -> Header file
'Initially Recorded: 9/22/01 12:45:07 PM
A
'Script Name: Classics Place an Order Datapool
ns
Dim x As Integer 'variable for loop
Dim dp As Long 'variable for datapool
Dim quantity, expdate As String 'variables for fields
w
dp=SQADatapoolOpen("Order CD") -> Open the Data Pool
For x = 1 to 10 -> Start of loop
er
Call SQADatapoolFetch(dp) ->fetch a row from the data pool
Window SetContext, "Name=frmMain", ""
PushButton Click, "Name=cmdOrder"
s.
'Result = WindowVP
(CompareProperties, "Name=frmOrder", "VP=Object Properties
1")
O
Window SetContext, "Name=frmOrder", ""
EditBox Click, "Name=txtQuantity", "Coords=84,8"
R
'Quantity data
Call SQADatapoolValue(dp,1,quantity)
G
InputKeys "{HOME}+{END}{DELETE}" &quantity
EditBox Click, "Name=txtCreditCard", "Coords=9,6"
InputKeys "{HOME}+{END}{DELETE}1234 1234 1234 1234"
EditBox Click, "Name=txtExpirationDate", "Coords=14,11"
'Expiration date data
Call SQADatapoolValue(dp,2,expdate)
InputKeys "{HOME}+{END}{DELETE}"&expdate
Result = ComboBoxVP
(CompareData, "Name=comboCardType", "VP=Object Data 1")
PushButton Click, "Name=cmdOrder"
Window SetContext, "Name=frmConfirm", ""
PushButton Click, "Name=cmdOK"
Next x
Call SQADatapoolClose(dp)
Copyright © [Link] Page 5/7
Rational TestSuite Interview Questions And Answers
End Sub
View All Answers
Question - 16:
In
What is user defined data type?
Ans:
te
user must create the datatype if none of the standard data
types contains the kind of values that user want to supply.
for example user need a database column named COLOR & the
rv
values should be red,blue,green,yellow,etc .
but in predefined datatype there is no such datatype.
so we have to create a user defined data type named color
&have a predefined values RED,BLUE,GREEN.
ie
1)to create user defined data type in rational robot
in Test Manager>>click Tools>>manage data types.
2)click new.
w
3)Type name(color) & description>>click ok
4)click yes when prompted to enter new data values now.
insert red,green,yellow,blue
5)click save
Q
View All Answers
ue
st
io
ns
A
ns
w
er
s.
O
R
G
Copyright © [Link] Page 6/7
Testing Most Popular & Related Interview Guides
1 : Manual Testing Interview Questions and Answers.
2 : JUnit Interview Questions and Answers.
3 : Database Testing Interview Questions and Answers.
4 : QA Testing Interview Questions and Answers.
5 : QTP Interview Questions and Answers.
6 : Mobile Testing Interview Questions and Answers.
7 : Software QA Interview Questions and Answers.
8 : Software Testing Interview Questions and Answers.
9 : Localization Testing Interview Questions and Answers.
10 : Network Testing Interview Questions and Answers.
Follow us on FaceBook
[Link]/[Link]
Follow us on Twitter
[Link]
For any inquiry please do not hesitate to contact us.
[Link]
Interview Questions [Link] Team
[Link]
support@[Link]