Questions tagged [rft]

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

188 questions
0
votes
2 answers

Recognition Property or Dynamic Object Map in RFT

Currently I'm using trial version of RFT for PowerBuilder v12.5 application. During recording when we save one windows information it generate a string (unique auto generated) for variable and use it for reference to store all other information from…
0
votes
1 answer

How can I get all nodes of a tree in RFT?

How can I get all nodes of tree in Rational Functional Tester?I have tried it using getTestdata() but couldn't solve the problem? Code Snippet: ITestDataTree iTreeData =(ITestDataTree)businessObj.smi_LocTreePricingRules().getTestData("tree"); …
0
votes
2 answers

how do I find the end of the scroll bar using Java in RFT

My application has the web page, which is longer than the browser size. This needs the application shld be scrolled down to view the complete Web page. I need to know how do I find the end of the Web Page unsing Java in RFT code?
0
votes
2 answers

RFT-how to get the title of the webpage in RFT

I am currently trying to automate a web application using RFT.The web application is written in Java. My test case,the moment,I navigate to a particular page,I want to get the title of the webpage example:- you go to www.google.com and then click on…
0
votes
1 answer

How to select an item from the combox menu in ibm rational functional tester

I am trying to select a text item from the text combobox menu. Its a DHTM text combobox and i am using RFT 8.1.1.3. The properties of the combobox is .class=Html.INPUT.text and its not showing any other unique property. there is no index and length…
Vinay
  • 1
  • 1
0
votes
1 answer

RFT Datapool Setting

Does RFT have limitations on how much data can be set into the form, using datapool? We are reading data from CSV files and it contains 70 columns each for two users, and data is set into forms. We are supposed to get 227 rows for each user in…
Nano
  • 5
  • 1
  • 5
0
votes
2 answers

Execute RFT script on a button click from VB.NET

I have automation scripts in RFT. I have designed UI in VS2012(coding in aspx.vb) which takes all the input fields here. I need to execute the RFT script on a click of a button taking all the fields from UI as arguments. Any help?? Thanks in…
Zak
  • 1
  • 2
0
votes
2 answers

IBM Rational Functional Tester - Hitting the Database

Im a new to this tool IBM RFT. How can I fetch data(in table form) from a Microsoft sql database dynamically for each time the script is running? And this data should be checked with the data(as a table) displayed on a webapp for verification. Is…
dq-charlie
  • 227
  • 2
  • 7
0
votes
1 answer

How do I get a TopLevelTestObject from a ProcessTestObject in RFT?

Given a ProcessTestObject, is there a way to retrieve the window associated with that process as a BrowserTestObject or at least a TopLevelTestObject? E.g. // Open IE at http://www.google.com/ ProcessTestObject browserProcess =…
Doval
  • 2,516
  • 1
  • 22
  • 22
0
votes
2 answers

After reload page RFT cant find TestObjects

I try to get all elements with recognition properties Html.LI and click in every testobjects. RootTestObject rto = getRootTestObject(); TestObject[] objects = rto.find(atDescendant(".class", "Html.LI")); for (int i = 0; i < …
Sviatlana
  • 11
  • 1
0
votes
1 answer

Start Test in The Middle of The Datapool in Rational Functional Tester

I am a newbie, as you will be able to tell soon. I am using Rational Funcational Tester (RFT) in VB.Net. I have a test with an associated datapool. I have been able to run tests without issue. All I want to do is start the test on record 5 of…
DMalerman
  • 31
  • 1
  • 1
  • 3
0
votes
1 answer

IBM RFT Suddenly slower

I have been using IBM's RFT for a short while now and the playback went really fast (nearly too fast to watch). Then I went through a tutorial and changed the RFTs config (options in the menu) a bit (but not the response times) and now it pauses far…
Arian
  • 3,183
  • 5
  • 30
  • 58
0
votes
2 answers

IBM RFT: Not starting application

I'm using RFT 8.2 with it's Eclipse Version but my own java program doesn't start within the RFT's recording function. It's just a small GUI for RFT exploration purpose and I selected it's class in RFT application setup. Of couse I can start it…
Arian
  • 3,183
  • 5
  • 30
  • 58
0
votes
1 answer

Rational Functional tester manual verification points title doesn't appear in the log

I'm using a manual verification point - it works well - but when it appears in the log its name -or title- appears empty, what should i do to make the manual VP's title appears in the log, thanks in advance Abed.
0
votes
1 answer

How to reuse the test object map in RFT

I have already have a script recorded with Object Map and Verification point for client1 and for client 2 i am using the same application but i dont want to re record the application, only the Verification point alone changes. The same object was…