Skip to main content

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>

Comments

  1. Great Article
    Cloud Computing Projects


    Networking Projects

    Final Year Projects for CSE


    JavaScript Training in Chennai

    JavaScript Training in Chennai

    The Angular Training covers a wide range of topics including Components, Angular Directives, Angular Services, Pipes, security fundamentals, Routing, and Angular programmability. The new Angular TRaining will lay the foundation you need to specialise in Single Page Application developer. Angular Training

    ReplyDelete
  2. Hey, would you mind if I share your blog with my twitter group? There’s a lot of folks that I think would enjoy your content. Please let me know. Thank you.
    selenium training in chennai

    ReplyDelete
  3. Hey, would you mind if I share your blog with my twitter group? There’s a lot of folks that I think would enjoy your content. Please let me know. Thank you.
    AWS Course Syllabus

    ReplyDelete
  4. Awesome article Lot's of data to Read...Great Man Keep Posting and redesign to People..Thanks
    Software Training institute in Chennai

    ReplyDelete
  5. very nice blogs!!! I have learned a lot of information from these sites...Sharing wonderful information. Thanks for sharing this valuable information with our vision. You have posted a trustworthy blog keep sharing.
    IT training and job placement

    ReplyDelete

Post a Comment

Popular posts from this blog

Adding Delay to Jenins Build Steps

For Windows batch Command use below command waitfor SomethingThatIsNeverHappening /t 60 The above command will wait for 60 secs For Jenkins 'Execution Shells' sleep 30s This will sleep for 30 sec and resume the execution

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 );  ...