Questions tagged [rft]

Acronym for Rational Functional Tester, an IBM Rational product for automated GUI testing

188 questions
1
vote
2 answers

Few Questions on IBM Rational Functional Tester (RFT)

How to integrate RFT with Testing Environments? Is there a way, that I can store all the test assets inside the RFT instead of on the PC? Does RFT has version control capabilities? Does RFT has ability to handle minor UI changes? Can we use RFT to…
user2770108
1
vote
2 answers

Which tool can replace RFT and Selenium?

I want to automate testing of java based applications, not exactly portals though. RFT 7 version that we have is not compatible with latest version of Firefox, so we need another tool, preferably open source. Please suggest some replacement for…
1
vote
1 answer

Is it safe to hold on to a mapped TestObject in RFT?

Mapped TestObjects are generally accessed through getter methods, e.g. button().click(); // Other code button().click(); // ... button().click(); Is there any reason why I shouldn't retrieve the TestObject once and reuse it? E.g. GuiTestObject…
Doval
  • 2,516
  • 1
  • 22
  • 22
1
vote
3 answers

How to let Selenium identify RFT script

We have been using RFT as the automated testing tools before, and have accumulated tens of thousands of automation test case scripts, now we need to upgrade to the Selenium tool, is there any way to let Selenium execute RFT script?
zenglzh
  • 7
  • 1
1
vote
4 answers

How to code "regexp1 and regexp2" as regular expression?

Currently my java code in RFT(Rational Functional Tester) see Class RegularExpression and search for text "RegularExpression" this page on to use RegularExpression. looks like RegularExpression RegExp = new RegularExpression("eduId="+edu_id,…
Radek
  • 13,813
  • 52
  • 161
  • 255
1
vote
0 answers

Installation of Helios' XML Editor into Helios based Eclipse fails

I am working with IBM Rational Function Tester 8.3, which is Eclipse 3.6 (Helios) based. I wanted to install XML support, so I enabled the Helios update site and chose Eclipse XML Editors and Tools 3.2.3 to install. I was promted for license…
Peter Kofler
  • 9,252
  • 8
  • 51
  • 79
1
vote
2 answers

opening mozila through RFT

Code: import resources.Script4Helper; import com.rational.test.ft.*; import com.rational.test.ft.object.interfaces.*; import com.rational.test.ft.object.interfaces.SAP.*; import com.rational.test.ft.object.interfaces.WPF.*; import…
nisha
  • 703
  • 2
  • 14
  • 28
1
vote
1 answer

RFT open browser using script

I want to use RFT to automate few operations on a webpage. I went through some links and codes and i tried just to open a browser say google using script in RFT. I took some code, but thats not doing the job of opening a google page on a open…
nisha
  • 703
  • 2
  • 14
  • 28
1
vote
2 answers

Rational functional tester - How can i read data from database instead of static data in datapool?

for my project, i need the text box to get their values from database instead of files and static data in data pool. simply, my application is reading stored data from database then doing some actions then save new data to database.
1
vote
2 answers

export data in a rft datapool to excel in rft

How to export data in RFT data pool to excel file ? I tried to directly open with excel but not able to view any content. Is there any other way? Pls help. Thanks in adv
Harika Mamidi
  • 452
  • 4
  • 20
1
vote
1 answer

Issues when importing a project from different machine RFT

I am trying to export a RFT project from a machine and run the scripts in different machine. Most of the testing is GUI testing. But the script works in one machine and in the other machine it fails. I have seen few other differences also , when the…
Harika Mamidi
  • 452
  • 4
  • 20
1
vote
2 answers

Execute rft test script using agent controller?

I need to execute a test script that generated by Rational Functional Tester using Rational Agent Controller. How can I do that? And if that's not possible what should I do to execute the script on a computer that hasn't RFT installed on?
1
vote
2 answers

Object not found error on OK button in the dialog box

In my application , by clicking the save button, the dialog prompts a message with OK button. While recording 'the OK button' got recorded and shows 'text_ok().click(atpoint(11,8));'. But during play back it shows me a 'Object not found'…
1
vote
1 answer

How to send informations to RFT playback window when running scripts?

When Rational Functional Tester runs a script, it shows the current script name, line number, and method. When I run my own code or external tools, line number and method name remain empty. How to send these informations to the playback window? I…
Alessandro Da Rugna
  • 4,571
  • 20
  • 40
  • 64
1
vote
1 answer

Can .text be a direct child of two different td's?

My RFT code is table_cell = find(atList( atDescendant(".class" , "Html.TD") ,atChild(".text" , "normal") ),false ); and it finds two objects. I was expecting only one because I specified that I…
Radek
  • 13,813
  • 52
  • 161
  • 255