StatusBar Text Matching Test

Hi everyone
While playing back load script, the following Status Bar Text Matching test failed. The error message :
StatusBar Text Matching Test "FormsLT AutoValidation: Verify StatusBar text value" failed. Failed to match "FRM-40400: Transaction complete: 1 records applied and saved.".
Please help me to resolve this
Thanks

Maybe because you have more than one record applied and saved.... or a functional problem.
You can verify the screenshot taken by OpenScript to see the real value displayed.
Hard to tell you more without more information actually.
You can edit the Status Bard test and paramaterize it if needed. You could even remove iit if you want to do so. However not a good idea.
JB

Similar Messages

  • How to do a text matching test on a button?

    I am trying to do a text matching test on a button for example 'Submit", but when I try to highlight it, it clicks the button, which is undesirable in my scenario.
    How could I do a text matching test on this button?

    I think you could do a number of things. The first is to put the Text Matching test on after the fact using the raw html. Another option is to use an object test in OpenScript where you just mouse over the element and hit f10 then choose the proper attribute to build a test case around. If all that fails then take advantage of the behavior and use the path captured for the event to build the test case after the fact and just delete the event afterward.

  • Problem at the time of Implementing Text Matching Test Case in OFT

    hi,
    I had add Text Matching Test Case on login of the application for the username and password. and If the Test Case fail on that screen,then it should not allow to go further in the application.
    As currently at the time of Playback, it is allowing to go further and in the Result Report it display the case failed.

    Actually my ques is that suppose at the time of recording i enter the username as abcd and password as 123.
    When the recording is done . I Insert a Text Matching test case for both the username and password where i put the condition for the username that select text should be present as "def" . And the Test Case failed .
    So i want to know that if the test case failed on Login. Whether it should be move forward at the time of playback?

  • Getting StatusBar Text using Open Script

    Hi!
    Does anyone know how to verify the status bar text?
    I want to enter a record, safe and then check if the StatusBar-Text is like "FRM-40400%".
    Any help would be appreciated.
    Thanks in advance!
    Best regards,
    Thomas

    Hi!
    But that does not work.
    I'd like to have something like "StatusBar Test" in LoadTest in Functional Test.
    Something like:
    nca.assertStatusBarText(
    1673,
    "FormsLT AutoValidation: Verify StatusBar text value",
    "FRM-40400: Transaktion beendet: 1 Sätze übergeben und gespeichert.",
    MatchOption.Exact)
    The "Text Matching Test" does not find the Text in the Status bar:
    System.out.println(forms.getStatusBarMessage());
    web.verifyText("StatusBarText_test", "FRM-40400: Transaktion beendet: 1 Sätze übergeben und gespeichert.",
    Source.DisplayContent, TextPresence.PassIfPresent,
    MatchOption.Exact);
    Do i have to program my own "Status Bar Test" in Functional Tester?
    Something like
    if (forms.getStatusBarMessage().equals("FRM-40400: Transaktion beendet: 1 Sätze übergeben und gespeichert.")) {
    System.out.println("Works fine!");
    // My own code
    Or is there a possibility to crate a variable and stort the Statusbar text in this variable and then do a "Text Matching Test" on this variable?
    Thank you!
    Best regards,
    Thomas

  • How to translate Function text matching to fucntion code?

    I try to translate Function text matching to Function code in GUI status?
    Is there any way you know how to solve it?

    Do you want to get Function code related to function Text in GUI Status programatically?

  • Looping back to 'Match Test' after incorrect 1st try

    I've just done my first Captivate thing and really like the
    program.
    But I've had a problem with the Match Test...
    - Student incorrectly matches by dragging & dropping and
    then clicks continue...
    - We loop them back to the the lesson slide
    - Then bring them back to the Match Test to retake the test
    - BUT...
    ..Old incorrect 'match lines' still show
    .. "Your Answer" & "Correct Answer" show
    .. Program freezes up
    My Question - We just want them to retake the Match Test so
    how do I prevent all the above?
    Thanks for any help.

    Hi again
    Create your own variables in Captivate? Nope But if you have
    Flash and are comfortable using it, you can probably do it. I know
    that a download exists on the Captivate Exchange
    Click Here to
    visit the Exchange that you may download that uses variables.
    And I think it comes with the source Flash .FLA file too. So
    assuming the Flash bit is an option, you could edit that FLA and
    bend it to your whims.
    Captivate does offer use of JavaScript. But it gets really
    tricksy. I think it fails in .EXE format and only works best if you
    add the script to either your HTML page that launches Captivate, or
    to a JS file you link to from that page. Then you can call
    functions in the script from Captivate that do different things.
    Cheers... Rick

  • Want to see constant text, say, TEST with strike off (like in MS word) prit

    Hi
    I hv a smartform, in which I hv a box with the size of 1 inch height and 10 inch width. I hv some text in it, say, "TEST", well.
    Now I need to print it as strikeTEST (meaning strike off like in MS word)
    So, pls. let me know How can get it?
    Thank you

    Thank you,
    "there are ready made fonts with strike out option"........Can you pls. mention couple, so that, will get it from Google. Right now, I dont know any such.
    Thank you,

  • Text in "test movie" looks funny

    When I load my doc.fla and perform "test movie" it appears
    that the font is too large? It has been a while since I have opened
    these files and I am using a different computer. Some of the text
    runs together and some text runs off of the white background. When
    I run a movie where test pops up, the words are missing. 6 moths
    ago when I last tried these files they were OK.
    Any suggestions?
    Thanks

    MGboat wrote:
    > tried it - no luck. What a pain!
    Just to clarify.
    You can't tween groups, you need to convert content to an
    instance.
    Secondly, do not use dynamic text unless you have dynamically
    driven
    content. Use static instead as dynamic can't be tween w/o
    font outlines.
    3rd, if you still did not manage to get it to work, upload
    the problematic
    sample to some website and provide us with link to spare us
    the guessing.
    It could be something too obvious to notice, other party look
    might help
    spot the problem quicker.
    Best Regards
    Urami
    !!!!!!! Merry Christmas !!!!!!!
    Happy New Year
    <urami>
    If you want to mail me - DO NOT LAUGH AT MY ADDRESS
    </urami>

  • Esing regular expression to reformat text (match & replace)

    Hi guys ..I am using regilar expression to reformat logs files..
    this is how i match the pattern..
    Pattern pattern = Pattern.compile("^<[^>]*>(.{6}).....
    Matcher matcher = pattern.matcher(thisLine);
    then prints the output...
    myOutput.print(matcher.group(1));
    It works..however my prob now is, i am reading a date in format "8 Nov"
    How can i change this to 8-11-2005 ????

    hmmm....ya..i can see the idea
    (\\d\\d?) (Jan|Feb|Mar|Apr|May|Ju[nl]|Aug|Sep|Oct|Nov|Dec) means that the month can be either one rite?
    but the thing is..its collected and put in a group. for example:
    Pattern pattern = Pattern.compile("^<[^>]*>(.{6}) ...
    myOutput.print(matcher.group(1));
    the first regular expression is group in group(1). its working..it can detect the text in group(1) the problem was...i tried this..
    String priority = matcher.group(6);
                   if (priority=="3")
                        System.out.print("AAA\n");
                   else
                   System.out.print("BBB\n");
    it keeps on printing BBB even there is a "priority=3".

  • Lookout 5.1 - errors with recoursive text expression : test process

    For all the lookout developers
    I've developed an example with one recoursive text expression that doesn't work correctly.
    The lookout verion is the 5.1.
    Normally I use this expressions when I develop HMI applications and the example represent the 1% of this expressions.
    Thank to all, and enjoy youselves.
    Bye
    Mario Fanelli
    Attachments:
    test_exp.zip ‏10 KB

    Hi,
    The value on "Recursive text expression" will never be different of a saved and not modified value, unless you make a modification in your process file and save the modifications.
    Best Regards
    Andre Oliveira

  • How to recognize the text inside a text box

    we have a scenario where we are validating the text inside a text box. Actually, we are inserting a text matching test on a node.
    The scenario is like this:
    When we open the screen it contains 6 text boxes.
    We have to enter the text in the first 3 text boxes and save.
    Then based on the entry the values are populated on the other three text boxes.
    We have to validate the values in these text boxes , so we click and highlight the value.
    Openscript identfiy the text box ,but it did not identify or recorded the values we have highlighted.
    How to make the openscript recognize the values? Can we do it through menu options or else we need to write the code?
    Any help will be appreciated.

    I answer to myself:
    Put all inside a PanelGroupLayout and set the layout to SCROLL.
    Edited by: baol on Mar 15, 2010 9:09 AM

  • Help needed in e-tester 8.5 its very important now.

    Hi
    i am using eteser 8.5......I need some clarifications on e-tester 8.5. we dont have any knowledge in earlier version i.e 8.4. While doing automation we are facing following problems pls share your info here. we were used QTP earlier but for our client request we are doing some R&D on e-tester.we are getting strucked in some areas.
    we are able to achieve extensibility through following ways i.e
    1) Insert Text matching test checkpoint
    2) we are able add Test Scriplet to each page i.e after page/before page loading. after adding scriplet we are writing small funcions in that scriplet using "*VBSCript*" but sill we are not able to use full functionalities here like we are trying to connect to database using ADODB. but those methods are not supporting in Scriplet.
    My Questions 1) Is there any alternate approch to connect to Database?
    2) How can we implement External programming concept here?
    3) Is there any alternative coding window other than Test Scriplet? If so Where exactly those are available in *8.4 and 8.5 versions*
    4) In all Threads we came to know that 8.4 is using VBA and 8.5 does not have any such type of facility. in 8.4 where we use VBA coding pls show the navigation. Is it in Scriplet or some where else?
    5) I want to Use this tool for automationg SAP application or . NET application do i need any seperate license or add-ins like QTP.
    6) Is current 8.5 is feasable for full automation of a Webapplication. By using 8.5 version can we automate any of our cllent requirement.
    7) how different 8.4 and 8.5 versions
    Anjani

    Oracle quoting is not in OAF, only the print functionality uses these VOs as data source , and are used in the xsl, for XML publisher to generate the quote print .
    1) My HeaderVO, LinesVO and PromptVO are extended, so do i need to extend the links present in that in my new extended VO' s as well.
    Please explain this , what do you mean by extending links ?2) My xsl stylesheet has a statement as
    select values of:....../HeaderVO/HeaderRow/....etc etc
    do i need to replace the above line to my new extended VO i.e
    select values of:....../CustHeaderVO/HeaderRow/...etc etc
    YesThanks
    Tapash

  • Path Selection issue in Table Test

    Hi All
    I got issue in adding Form actions (ex:- Table test, Text matching test ) in my Oracle Forms and report product. It is not selecting the Path..
    Can any one suggest why the Path is not selecting ...?
    Appreciate your feed back.
    Regards,
    Sairam

    Hi Deepu,
    Please find the code below while doing text matching test
    web.window("//forms:window[(@name='WIN1')]").verifyText(
                                  "uniform", "365", Source.DisplayContent,
                                  TextPresence.PassIfPresent, MatchOption.Exact);
    Regards,
    Sairam

  • TMT pass when text is absent in Nav-Editor

    Hi all
    I know that in order to make a text matching test in nav editor I have to use Custom Dynamic Values, but what if I want to create a TMT that pass when text is absent, I know how to do this in e-tester but this can be done in nav editor?
    I think that this is not possible, but is not a bad idea to ask any way, maybe someone of you have a good idea for this..
    Tanks a lot

    Juan
    I'm not 100% sure if there is a "Click and do" way of doing so, but you can always use the findInHtml function in VBA
    Alex

  • Path selection issue

    Hi All
    I got issue in adding Form actions (ex:- Table test, Text matching test ) in my Oracle Forms and report product. It is not selecting the Path..
    Can any one suggest why the Path is not selecting ...?
    Appreciate your feed back.
    Regards,
    Sairam

    Hi Deepu,
    We are using OATS version 12.2, JAVA Version 6.0.350 and erp application is our own application developed in oracle 10g forms. We did not get any errors while installing OATS.
    Regards,
    Sairam

Maybe you are looking for