GeekInterview.com
Series: Subject:

Rational Robot FAQ

Showing Questions 1 - 20 of 27 Questions
First | Prev | | Next | Last Page
Sort by: 
 | 

1.What is the extension of header file and library file ? What is extension of compiled library file in rational robot ?2.List out some sqa basic commands ?3.In which directory the project details are...

Asked By: aarthi | Asked On: Aug 21st, 2007

Answered by: sampada.ab on: Oct 31st, 2009

Extension of header file : .sbh
Extension of library is : .sbl.

Answered by: prashanth.n on: Dec 10th, 2007

The extension of header file is .sbh and library file is .sbl.
The extenstion of complied library file is .sbx


Regards,
Prashanth.Np

How do you record movements of mouse in excel applications?

Asked By: Master | Asked On: Mar 29th, 2007

Answered by: sampada.ab on: Oct 31st, 2009

You can switch to low level recording for this particular scenario

Regards,
Sampada

How can I write data into external excelsheet using rr.

Asked By: Abhijeet | Asked On: Jan 16th, 2007

Answered by: mndhinesh on: Aug 6th, 2009

    Dim FilePath
    Dim FileNumber
    FileNumber = FreeFile
    FilePath = "E:abc.xls"

   Open FilePath For Output As FileNumber

  Write #FileNumber ,"data1,data2,data3"


Answered by: vijayabhaskarr on: Mar 1st, 2007

1) First you create Excel Object with the below statement. Set objExcel = CreateObject("Excel.Application")2) Open the work bookobjWorkBook = objExcel.Workbooks.Open(FileName:=sFileName...

How can I use a script from one project in another project ?

Asked By: A. Tawee | Asked On: Oct 22nd, 2007

I would like to use a script in another project. I copy this script .Rec to the directory of new project but I can't see this script when I open the new project. Could you please tell me how to use a script in a project to another project?

Answered by: math_janaki on: Dec 24th, 2008

I have given a detailed explanation about how to copy a scriptfrom one project to another in question no. 47.
Refer Que 47: How to copy the script from one project to another project?


Hope it helps you.

Answered by: math_janaki on: Dec 24th, 2008

When you copy a .rec file from one project to another project, you can't see that script directly in the script window if you say open -> script and give the script name.When you are copying a ...

How to store value in datapool?

Asked By: Yaamin | Asked On: Sep 27th, 2007

Answered by: math_janaki on: Dec 24th, 2008

You can either write the values into an excel, save it as a CSV file and import the csv into robot as a datapool (or) Just go to Tools -> Manage -> Datapools from Test Manager, Click on New, giv...

Answered by: prashanth on: Nov 22nd, 2007

You can provide data directly into .csv file.

Script copy

Asked By: srathour07 | Asked On: Aug 26th, 2008

How to copy the script from one project to another project?

Answered by: math_janaki on: Sep 30th, 2008

You have 2 ways to copy a script from one project to other project.1st Method:Go to TMS_Scripts folder of your project. Let's say ur source project name is Project1 and destination project name is...

AbbreVATion or .Rsp

Asked By: FairySan | Asked On: May 5th, 2008

What is the abbreVATion of .Rsp

Answered by: prashanth.n on: Aug 22nd, 2008

RSP means Rational Suite Project.

What is the difference between rational robot and QTP tool.Which one is better to use between these two.

Asked By: sandeep | Asked On: Jul 11th, 2006

Answered by: asn_satya on: Jun 25th, 2008

For Startup in robot below link will be very helpful.ssi7.cs.tamu.edu/ssi/tutorials/pdf/Robot/robot_tutorial.pdfSimilar docs for QTP also available in the net.

Answered by: indu on: Sep 21st, 2006

hi sandeep..

u can run ur project by firsr recording it by recording modes and playback the process which will be available in the tool bars of all tools...u can change the baseline value and playback ..n compare the acutal and expected

Rational functional tester

Asked By: valy | Asked On: Nov 4th, 2007

What is the difference between rational robot and rational functional tester?Can rational robot be used to test web application?

Answered by: laxmaneluri on: Apr 25th, 2008

rational robot and RFT are the two different test automation tools from IBMdepend on the project you have to choose the right toolto mention few diff1. Robot uses SQABasic as scripting language and RF...

What are datapool separators?

Asked By: krithika | Asked On: Jun 14th, 2007

Answered by: prashanth.n on: Feb 25th, 2008

Any character can be used as datapool separator.But most commonly used separator characters are , ; / and |

How to convert all the rational robot script files in to QTP script files

Asked By: prabhu | Asked On: Apr 20th, 2007

How to convert all the rational robot script files in to QTP script files tool that is like file transferring from rational robot into QTP or atleast if there ia any possibility something like how the QTP will call winrunner test if there any load ins to add to do that in QTP tool pls specify that. Because...

Answered by: SmitaSatpute on: Feb 20th, 2008

is there any tool which can convert this

Answered by: Vipul on: Jun 18th, 2007

there is no way you can do this on a click of a button. You are asking to convert donkey into horse. Sorry you have to do this manually

How to record Java application using rational robot?

Asked By: d.TestEngineer | Asked On: Apr 27th, 2007

Step by step details required for Java application as well as for Java applets.

Answered by: karan_777 on: Jan 31st, 2008

Assume that Rational Robot Installed.
Click on Start
Click on Program
Click on Rational Robot
in this menulist you will get Rational Test sub menu
Click on Rational Test  click on java enabler
make all  setup now launch Rational robot your java application is recoconised by rational robot

What is rational purify and rational quantify?

Asked By: ashwini | Asked On: Aug 22nd, 2007

Answered by: Remya_R on: Dec 30th, 2007

Rational Quantify: This component will help rational robot to find speed and efficency of the application
Rational Purify:This component is used to avoid memory leakage due to the use of poniter concept in c&c++

How to get row count of datapool in rational robot?

Asked By: chandrashekar | Asked On: Sep 26th, 2007

Answered by: yuganya17 on: Nov 20th, 2007

We use the following function to get the rowcount from datapool that is to get the row number of last row used.Function getrowcount_excel(sSheetName as String)    Dim vCount as Variant&...

What is the full form sqabasic script?

Asked By: Dhevi | Asked On: Oct 10th, 2007

Answered by: lakshmy on: Nov 13th, 2007

SQABASIC-Software Quality Assurance Basic

Hello, can anyone kindly explain me how to use a datapool in rational testmanager. I created a datapool, e.G a datapool of 1 column for entering 5 strings one after the other in an edit box. The problem...

Asked By: Khan | Asked On: Apr 5th, 2006

Answered by: vaishali on: Oct 24th, 2007

hiwe use datapool option to test any field wid multiple values.like if we want to test the password field in login form for that :-in script write as:----------------------dim dp as longdim i as integ...

Answered by: diwaker srivastava on: May 23rd, 2007

in this script note0 is datapool file . datapool file contain two fields filename and desc and have 3 records''$include "sqautil.sbh"Sub Main    Dim Result As Integer&...

Where do you store object in rational robot?

Asked By: bk | Asked On: Aug 11th, 2006

Could anyone please tell me where the objects get stored in rational robot?And how to view that file . How to check the name and description of the object .Like in QTP there is object repository which u can view by going to tools--> object repository .In winrunner there is gui map.So what do you use...

Answered by: Lucky on: Jul 25th, 2007

There is no seperate object repository in rational robot. Object recognition is string based.Eg:Window Setcontext,"Caption=Calculator",""In above commandWindow: is the method or command which will tak...

Answered by: info2harish on: Aug 24th, 2006

Hi,If u say u have a Custom object .Then u have to1) go for Inspector which is there in main Menu bar Tools>Inspector. 2)point the custom object from hand with in Inspector.U will get the clas...

I have an web application (buid in ASP.Net framework 2.0) which needs to be tested. I have recorded a script with rational robot. When I play back the script, the robot cannot selected the menu item and...

Asked By: Cédrille | Asked On: Sep 20th, 2006

Answered by: Cnu on: Jul 13th, 2007

I suppose you have to put Delay..pls try once again by giving Delay.

Answered by: sanjan on: Jul 12th, 2007

Cedrille, For this you have to record it using low level scripting on. To initiate this just press Ctrl + Shift + R and once you have selected the menu and done everything again press on Ctrl + S...

Is there "regular expression" in rational robot or like that in QTP ?

Asked By: prakash | Asked On: Oct 14th, 2006

Answered by: lalit on: May 9th, 2007

Hi, I think Like QTP there is no Regular Expression in Rational Robot.but We can use Wild cards in Rational to make some part of changing value.Like if we are testing any window where when we record a...

I want to install the rational robot on XP home edition . Can anybody please let me know how to do that....?

Asked By: Rashmi | Asked On: Jul 18th, 2006

Answered by: Ashutosh Singh on: May 1st, 2007

Hi,
  As i know, Rational robot can't install on home edition of XP, try it on professional or any server OS.

Regards
Ashutosh

Answered by: hasan on: Apr 6th, 2007

When I connect to db2 I have a problem wth connection of the db2.
Is it because of XP Home Edition?

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.