Acronym for Rational Functional Tester, an IBM Rational product for automated GUI testing
Questions tagged [rft]
188 questions
1
vote
2 answers
Now able to get Id property for flex components
I am not able to get the Id property for flex components in my flex application(swf file) using Test Object Inspector in Rft Tool.
How can i get them?

Abhishek
- 338
- 5
- 20
1
vote
1 answer
Header in RichTextBox file gets removed
I use the following code:
RichTextBox rtf = new RichTextBox();
rtf.Rtf = AnswerRTF;
rtf.SaveFile(sourceFile + "/" + fileName);
for creating a RichTextBox file
but this code removes Header and Footer after creating that file.
What is the problem?

ashe405
- 59
- 1
- 9
1
vote
2 answers
IBM RFT: object finder dissappears
I am attempting to use object finder on RFT v9.1. It suddenly disappears when attempting to highlight a object. Is there something I need to do to correct this? It use to work and suddenly stopped.

Jack Jones
- 11
- 1
1
vote
2 answers
RFT Exporting & running it on a server
I'm extremely new to rational tools. I have a script recorded and its ready to be exported into something I can execute. I'm not sure how to do so. I'm using Rational Function Tester v 8.1.0.3 Java Scripting. In other words I need the script to run…

ajoe
- 558
- 1
- 11
- 32
1
vote
0 answers
IBM RFT 9.1 : Object found but not clicked
I am using RFT to test a couple of web applications in Internet Explorer. Note that I am not using it 'Out of the box', I am reading steps from an excel file and then calling the corresponding RFT method.
For example, in excel, if I have:
Click .id…

Melodie Gauthier
- 685
- 3
- 12
- 35
1
vote
0 answers
Rational Functional Tester Finding Missing Dynamic Object-
RFT- I am currently working with RFT to automate a dynamic test object web application. I recorded a page, but instead of mapping specific objects it maps it to HTML.Browser, Such as a list of radio buttons that cannot be recognized when I inspect…

nchll
- 53
- 1
- 5
1
vote
2 answers
Why there is no "public static void main" required to start an RFT script?
I was wondering how RFT works even though it doesn't contain any public static void main(String[] args) in the script. The script contains a method public void testMain(Object[] args) which is running the script. Can someone explain how this is…

Muhammed Ak
- 9
- 2
1
vote
2 answers
I want to Integrate IBM RFT Tool With IBM RTC
I have written script using RFT tool , now I Want to integrate it with RTC tool so that Using RTC I can Run My Script From Web page, is it possible?

Gaurav Kumar
- 35
- 1
- 6
1
vote
0 answers
Create single instance of a class for a complete Automation execution
We have some 100 classes in our project. Each class defines a webpage of our application. Ex, we have separate class for Login page, Logout, Home Screen, etc., So like this we have many webpages in our application and we have separate class file for…

Gany
- 13
- 1
- 5
1
vote
0 answers
Making connection to dynamic URL with jsoup after making a session
Need help with making connection to a dynamic URL with the help of jsoup. I am able to create a session with jsoup , but after creating the session need to navigate to the URL which is dynamic. Is there any way to pass values and click buttons in…

Yash
- 11
- 1
1
vote
2 answers
How do I make RFT report test results in real time?
In our development environment, we run a Continuous Integration service (TeamCity) which responds to code checkins by running build/test jobs and reporting the results. While the job is in progress, we can easily see how many unit tests have…

VoiceOfUnreason
- 52,766
- 5
- 49
- 91
1
vote
5 answers
can I have svn for RFT scripts?
We user svn at work and now we are introducing RFT (Rational Functional Tester).
Is there any chance I can use existing svn to version my RFT scripts? I understood that one RFT script contains is not equal only one file.
RFT v 8.1.1.2 runs on…

Radek
- 13,813
- 52
- 161
- 255
1
vote
2 answers
Getting Browser Enablement test as Fail while testing for Chrome browser in RFT
As my application only support Chrome browser and try to test it using IBM RFT.
Issues:
Browser enablement test is fail while testing Chrome from Enable Environment in RFT
Due to that not able to capture any objects in Chrome using RFT
Tried the…

monk_507
- 27
- 2
1
vote
1 answer
NullPointerException in createRow method in HSSFSheet
I am trying to write data in excel.
FileOutputStream oFile = new FileOutputStream(yourFile, false);
HSSFWorkbook workbook=new HSSFWorkbook();
HSSFSheet sheet=workbook.createSheet("Script_ID");
HSSFRow rowheading =sheet.createRow(0); //…

monk_507
- 27
- 2
1
vote
1 answer
Count the total instances of the same test object. RFT:Java
I am getting this error
"exception_name = com.rational.test.ft.AmbiguousRecognitionException
exception_message = CRFCN0527E: Found 90 instances of the same test object. This often happens when multiple instances of the application are running."
This…

TJF
- 45
- 6