Skip to main content

Posts

Showing posts from February, 2013

Rational Functional Tester: Verify text in html page

 Steps: 1.        For existing script, go to   “Insert verification point” button 2.        In “Verification point and action wizard” Click on “Object finder” 3.        Select the text which u want to verify (read mark will be highlighted when u show) 4.        Next you are allowed to select action 5.        Select “perform Data verification” to verify text select “Perform propertied verification ” to verify properties 6.        Next , now u can see the text which u are setting as verification point(u can edit if u need)

Rational Functional Tester: Calling RFT scripts from using xml tags

Hello, This will help to call RFT scripts in xml, if anyone using 'ant' this will help them to embed code to invoke RFT scripts. <java classname="com.rational.test.ft.rational_ft" fork="true" maxmemory="1024m">         <classpath>         <fileset dir="C:\Program Files\IBM\SDP\FunctionalTester\bin\">         <include name="rational_ft.jar" />         </fileset>         </classpath>         <jvmarg line="-Drational_ft.install.dir=&quot;C:\Program Files\IBM\SDP\jdk_\jre\bin&quot;" />         <arg line="-rt.bring_up_logviewer false -datastore &quot;D:\RFT-Dev\Project&quot; -playback RFTTestSet5.testcase4.TestScript1" />         <arg line="-args -scriptArg ${scriptValue}" />         </java>

Rational Functional Tester: Finding Table cell value using descriptive programming in RFT

Hello, We can use this code to get the cell value of a table object. ITestDataTable myTableData1 = (ITestDataTable) xmlPackContainerDetailsContain() .getTestData("contents"); QtytoPack = myTableData1.getCell(0, 5).toString(); Note: xmlPackContainerDetailsContain() is a recorded object, use find() function to find object if you don't want recorded object

Rational Functional Tester: Creating and Reading Datapool cell value in RFT

Hello, Hope this will help for my friends who is trying to use data pool for dynamic values.If you want to use any run time values in between scripts then you will be looking for the functions to read/write/create datapool cells dynamically. /************ Dp row count *************************/ IDatapoolIterator  ite; ite.dpCurrent().getEquivalenceClass().getRecordCount(); /***************** to set cell value **************/ IDatapoolIterator it; ((DatapoolCell) it.dpCurrent().getCell("RunTimeSheetForContainers")).setCellValue("Y"); /*********** to load CSV files (csv to Datapool)*******************************/ public IDatapoolIterator LoadCSV(String Sname)       {             File fname=getFileName(Sname);             IDatapool dp=DatapoolUtilities. loadCSV (fname, "," , true );             IDatapoolIterator ii=dpFactory().open(dp, null );             ii.dpInitialize(dp);             return