Replay Recorded Test Script

Hai friends,
I tried recording web dynpro application. How to replay the test script?
Thanks in advance,
Regards,
Krish.

Hi Krish,
            if u have recorde ur test script for ur web dynpro application , then u will get a Script file.
Select that file -- right click on it --> replay .
Check this link for help:
[http://help.sap.com/saphelp_nwce10/helpdata/en/22/a7663f6b27db12e10000000a114084/content.htm]
Thanks and regards

Similar Messages

  • Replaying a Test Script in the Developer Studio

    hi
    The following is the error I am getting
    I am able to start and stop recording.
    But when press Start Replay Button
    i am getting this error in the lower text area where messages area;
    ERROR: Invalid Xml document received from the Xml Client. WindowId attribute is missing.

    Hi Stefan,
    nice to meet you again. I had some personal "tragedies", a broken big toe, one week later a (and now... silence... google translates... HERE WE ARE:) "volume disk incident" (I'm not able to award points in this thread, but if I could, I would give 10 for the one who comes behind the secret ).
    So I have been in hospital and rehablitation hospital for about six weeks and another two weeks at home, trying to get on the feet again.
    When I returned, I saw the point-rewarding system on SDN, so in the first week, I was completely blocked by awarding you points for every tip in the past
    The WebDynpro project now has come more or less to an end, so at the moment I'm personally back on EP topics.
    Best regards
    Detlev

  • Importing internal table data from FM to eCATT test script

    Hi all,
    I am working on Workflow project where by i need to post invoices related to purchase orders sent as scanned imaages. Incase all the data in the incoming invoice(scanned) is correct then i am using BAPI_INCOMING_INVOICE_CREATE to post the invoice.
    But when the data is wrong, i need to give the user MIRO transaction pre-populated with the invoice details so that he manually corrects them(after verification) and posts the invoice.
    I understand MIRO is an ENJOY transaction hence BDC doesn't work properly(i have tried with all kinds of options on recording and the problem comes incase of multiple POs) hence i choose to use eCATT.
    The recording worksfine but my real problem is the PO data (multiple PO details for same invoice) is in table form. In all my previous objects related to eCATT we used to upload the file, hence no problem of importing tables.
    But now as i'll call this test script from a function module which has all the POs in the form of internal table, i need to import this into my test script.
    Please any body tell me how to proceed in this case or please suggest me a better a way to record the MIRO.
    Thank you,
    Lakshmi Narayana.S

    Hello Raj,
    First of all thank you for your inputs.
    Yes, I know about Parking an invoice. even i am using it in some scenarios.
    If everything on the invoice matches with the values in SAP then i am posting it using BAPI invoice_create also.
    But for some scenarios like if the PO on the invoice doesnot match with actual PO then i need to create a work item in the Accounts Payable user's inbox and he will change invoice data manually (after getting confirmation and correction) and post it using MIRO.
    Here i need to pre-populate the MIRO with the invoice data so that he can correct and post it.
    Hence i was trying to write a BDC and as MIRO is an Enjoy transaction i thought writing a BDC is not a good idea (i tried writing BDC but had problems) hence i am using eCATT.
    Hope i am clear about my problem. Any inputs to solve this are welcome.
    Thanks,
    Lakshmi Narayana.S

  • In eCATT, How to mention the values as  input parameter during test script

    Hi,
    1. I am just learning eCATT tool. I created a Test Script by recording my transaction. But if i want to execute the recorded transaction with different data then how to store the values.
    2. How to execute my Test Script created in one client to another client of same server. is it just by mentioning the target system or do we have to do anything in anothere client.
    Lakshmi

    Hi
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/a0e0ebec-c9da-2910-689e-b1a22a621c7f
    Manoj Shakya.

  • Issue running Load Test Scripts in an SSO environment

    Hello,
    I am performance testing some of our web applications that use SSO. Any script I record will play back fine but upon running them in the Navgation Editor I am getting HTTP/1.1 401 Unauthorized error messages. To combat this I configured Internet Explorer securuty settings to always prompt me for a username and password to access this site. I then used the dialog and authentication managers to have e-Tester automatically enter login information.
    However even with all of that configured I still get the error message when playing back in the navigation editor or Load Teser. How can i get around this issue short of having a login page as oppossed to the dialog message i use to login now?

    Yes I understand your SSO authentication scheme as well as the 401 error you receive. What type of authentication is your SSO using? Is it NTLM or something different?
    When you run in the navigation editor, which Options->Playback Agent have you chosen? The best agent to use is "Java Agent", though to debug authentication problems you should test the other 2 options, which is Thin Client with and without Wininet.
    I did not mention it before, but if you are only interested in creating performance testing scripts you may consider the new OpenScript tool. In the near future you will also be able to use this tool for Functional UI scripting. See my comments in [this thread|http://forums.oracle.com/forums/message.jspa?messageID=3356340#3356340]

  • Error in Test Script in eCATT

    Hello Experts,
    When i am executing my test script after recording the transaction,the system is running FB50 in the remote system but giving error in foreground mde.
    Attached is the snapshot of error.
    Abhishek

    thanks AP for your reply.
    I have deleted and  I have recreated the file with new recording but the error still ramains.
    Can anybody assist to solve the issue ?
    Thanks in advance.

  • Coded UI test script works in VS2010 but not in VS2012.

    I have a test script for an application that adds 3 part numbers (i.e., rows) to a table displayed on the AUT web page.  Each row in the table also contains an
    HTMLInputButton called View Audit Trail.  The purpose of the test script is to select the correct button, which then calls up the
    Audit Details page for the selected part number.  The code used in the test script driver is as follows (the same code is used for clicking on either an action button or a hyperlink contained within a table):
    case "ClickTableItem":
    // Note: An input example would be
    03-0024-0-0001:Button>View Audit Trail
    string[] keys = action[key].Split(':');
    string cellvalue = keys[0].CheckGlobalValue(global);  // The key data identifying which table row.
    string[] objtypeANDobj = keys[1].Split('>');  // Data consists of the Object Type, and the Object to be clicked.
    // Identify the table...  (The name of the table from outside the
    Switch statement.)
    HtmlTable actionTable = (HtmlTable)map.GetType().GetProperty(key.FieldName).GetValue(map, null);
    // Identify the individual table cell containing the key identifier...
    HtmlCell cell = new HtmlCell(actionTable);
    cell.SearchProperties.Add("ClassName", "HtmlTableCell");
    cell.SearchProperties.Add("InnerText", cellvalue, PropertyExpressionOperator.Contains);
    UITestControlCollection tablecells = cell.FindMatchingControls();
    // Set the row index...
    HtmlCell myhtmlcell = (HtmlCell)tablecells[0];
    int myrow = myhtmlcell.RowIndex;
    string smyrow = myrow.ToString();
    HtmlCell myCell = new HtmlCell(actionTable);
    myCell.SearchProperties.Add("RowIndex", smyrow);
    #region Click on Hyperlink
    if (objtypeANDobj[0] == "Hyperlink")
    myCell.SearchProperties.Add("FriendlyName", objtypeANDobj[1], PropertyExpressionOperator.Contains);
    UITestControlCollection testclickobjects = myCell.FindMatchingControls();
    UITestControl tableclickobject = testclickobjects[0];
    HtmlHyperlink myClicklink = new HtmlHyperlink(tableclickobject);
    Mouse.Click(myClicklink);
                            logger.Write("    Action", "Table Select - Row: '" + cellvalue + "': Hyperlink '" + objtypeANDobj[1] + "' selected");
    #endregion
    #region Click on Button
    else if (objtypeANDobj[0] == "Button")
    // Search child level...
    UITestControlCollection testclickobjects = myCell.FindMatchingControls();
    UITestControl tableclickobject = testclickobjects.Where(btnCell => btnCell.GetChildren().Any(btnChild => btnChild is HtmlInputButton && btnChild.FriendlyName == objtypeANDobj[1])).First();
    HtmlInputButton myClickbtn = tableclickobject.GetChildren().Where(btnChild => btnChild is HtmlInputButton).First() as HtmlInputButton;
    Mouse.Click(myClickbtn);
                            logger.Write("    Action", "Table Select - Row: '" + cellvalue + "': Action Button '" + objtypeANDobj[1] + "' selected");
    #endregion
    break;
    In VS2010, the correct button is always selected, and the correct audit page always appears.  In VS2012, though, the correct button is always selected, but the green progress bar speeds across the screen and the test crashes, even though the message
    log records the correct action.  (It crashes because it can't find the verification information that the correct page was displayed, seeing as the correct page doesn't appear.)  If I manually re-open the application, the table containing the added
    part numbers is still displayed, and I can click on the appropriate View Audit Trail button and go to the correct audit page.  
    What really has me stymied, though, is that the script actually passed twice.  Both times, though, either VS, the test script, or the app itself hiccupped, and only added 2 of the 3 part numbers to the table.  As always, the correct button was
    selected, but in these two cases the audit screen actually appeared, so the rest of the test passed successfully.
    I've tried removing one of the part numbers, but the script still failed despite once again selecting the correct button.  The first thing I thought of was re-mapping the web page objects using VS2012, but it turned out that they have the same properties
    as with VS2010.  Unfortunately, it didn't help.  I've also tried changing the following parameters:
    HtmlInputButton to HtmlButton
    <PropertyCondition Name="ControlType">Button</PropertyCondition> to
    btn
    <PropertyCondition Name="Type">button</PropertyCondition> to
    submit
    <PropertyCondition Name="Class">PageButton</PropertyCondition> to
    Button or btn
    The only other thing unique is that the AUT for the VS2010 test script uses a different login screen than the AUT for VS2012 (different URLs for the login screens).  Other than that, though, once the login screens are passed, the web pages accessed
    are identical (i.e., the same URL).
    Has anyone else run into a similar situation?  

    Hi Jack,
    Here is the applicable part of the error log.  Unfortunately, it doesn't explain why the Audit page doesn't appear when you click on the View Audit Trail button.  It only fails because it can't find the Return To Search button (which makes sense,
    because the page wasn't opened).  As you can see, I stuck a 60-second Wait step (Step 14) to see if the page would eventually appear, but it didn't.
    Processing Step 12:
         Data Entry: Selected radio button 'ActionTypeRadioInquiry': 'ON'
         Data Entry: Entered 'AircraftTailNumber': '0201'
         Action: 'Search' selected
    Processing Step 13:
         Action: Table Select - Row: '03-0024-0-0001': Action Button 'View Audit Trail' selected
    Processing Step 14:
         Action: 'Wait': System test paused for 60 seconds...
    Processing Step 15:
    Logging Entry Type: Error
    Logging Entry Type: FailureAudit
    System.String: <string>    *** FAILED Step 15 ACTION: 'ReturnToSearch' Error 'The playback failed to find the control with the given search properties. Additional Details:
    TechnologyName:  'Web'
    ControlType:  'Button'
    TagName:  'INPUT'
    Id:  'ctl00_ContentPlaceHolder1_btnReturnToResults'
    Name:  'ctl00$ContentPlaceHolder1$btnReturnToResults'
     Failed to find any control that matched the value ctl00_ContentPlaceHolder1_btnReturnToResults for the search property Id.'</string>
     System.String:     *** FAILED Step 15 ACTION: 'ReturnToSearch' Error 'The playback failed to find the control with the given search properties. Additional Details:
    TechnologyName:  'Web'
    ControlType:  'Button'
    TagName:  'INPUT'
    Id:  'ctl00_ContentPlaceHolder1_btnReturnToResults'
    Name:  'ctl00$ContentPlaceHolder1$btnReturnToResults'
     Failed to find any control that matched the value ctl00_ContentPlaceHolder1_btnReturnToResults for the search property Id.'
    Logging Entry Type: Error
    System.Exception: <Exception><HelpLink /><Source /></Exception>
     System.Exception: System.Exception: Exception in Step #15 from the 'PerformAction' module... ---> Microsoft.VisualStudio.TestTools.UITest.Extension.PlaybackFailureException:   Step 15 ACTION: 'ReturnToSearch' error 'The playback failed
    to find the control with the given search properties. Additional Details:
    TechnologyName:  'Web'
    ControlType:  'Button'
    TagName:  'INPUT'
    Id:  'ctl00_ContentPlaceHolder1_btnReturnToResults'
    Name:  'ctl00$ContentPlaceHolder1$btnReturnToResults'
     Failed to find any control that matched the value ctl00_ContentPlaceHolder1_btnReturnToResults for the search property Id.'
       at WS.Tests.DataEntryUtil.PerformAction(Dictionary`2 action, Object map, Dictionary`2 global, Int32 stepNumber, LoggingProvider logger) in c:\Source\QMOTestUtilities\WS\WS\Tests\WSAutomation\DataEntryUtil.cs:line 1964
       at WS.Tests.WSTest.ScepTest() in c:\Source\QMOTestUtilities\WS\WS\Tests\WSAutomation\WSTest.cs:line 193
       --- End of inner exception stack trace ---
    Logging Entry Type: Error
    System.Exception: <Exception><HelpLink /><Source /></Exception>
     System.Exception: System.Exception: DataDriven Test Execution Exception Caught ---> System.Exception: Caught Exception in Step #15 from the 'PerformAction' module... ---> Microsoft.VisualStudio.TestTools.UITest.Extension.PlaybackFailureException:  
    Step 15 ACTION: 'ReturnToSearch' error 'The playback failed to find the control with the given search properties. Additional Details:
    TechnologyName:  'Web'
    ControlType:  'Button'
    TagName:  'INPUT'
    Id:  'ctl00_ContentPlaceHolder1_btnReturnToResults'
    Name:  'ctl00$ContentPlaceHolder1$btnReturnToResults'
     Failed to find any control that matched the value ctl00_ContentPlaceHolder1_btnReturnToResults for the search property Id.'
       at WS.Tests.DataEntryUtil.PerformAction(Dictionary`2 action, Object map, Dictionary`2 global, Int32 stepNumber, LoggingProvider logger) in c:\Source\QMOTestUtilities\WS\WS\Tests\WSAutomation\DataEntryUtil.cs:line 1964
       at WS.Tests.WSTest.ScepTest() in c:\Source\QMOTestUtilities\WS\WS\Tests\WSAutomation\WSTest.cs:line 193
       --- End of inner exception stack trace ---
       at WS.Tests.WSTest.ScepTest() in c:\Source\QMOTestUtilities\WS\WS\Tests\WSAutomation\WSTest.cs:line 213
       --- End of inner exception stack trace ---
     Test Script Status:  FAILED 'Test_Click_Table_Item':   Execution Time: 00:02:03.7293717
    The calling page is given a specific key value (M&E Part Number) which identifies the table row containing the correct
    View Audit Trail button to select.  The key for this test is
    03-0024-0-0001, indicating that the test is to select the
    View Audit Trail button in the third row of the table.
    Without fail, the correct button is selected.  Selecting this action button is
    supposed to call the appropriate Audit page.
    While there have been several test runs where the correct audit page does get displayed, most of the test runs will
    not display the page, even though a significant Wait period has been inserted to allow the application additional time to process the page request.
    I tried to attach the screen shots of the two pages in question, but wasn't allowed to because apparently my account hasn't been verified.  If I can upload them or email them somewhere else, let me know and I'll give it a shot.

  • Cannot record a script in Firefox 3.x, 6.x, 10

    Hello,
    When recording a script in the Firefox browser, the following error in message box appears (only in Firefox):
    "Cannot get a connection from the browser helper after 15 seconds. Do you want to continue waiting for the browser to load?".
    The OpenScript Diagnosis Tool shows an error in the "Web Functional Testing" category with the name "Firefox Profile". Also, the Diagnosis Tool shows the following message: Please close the Firefox or check the integrity of Firefox default profile manually.
    Moreover, The ODT log shows the following lines:
    09:46:51,229 DEBUG [DiagnosisExecutor] Diagnosing Firefox Profile
    09:46:51,229 ERROR [DiagnosisExecutor] Failure found when diagnosing Web Functional Testing Firefox Helper
    09:46:51,229 DEBUG [DiagnosisExecutor] Trying to fix Firefox Profile
    09:46:51,229 INFO [Firefox Helper] Try to fix an issue: Firefox Profile
    09:46:51,229 ERROR [FireFoxUtil] oracle.oats.scripting.modules.browser.api.utilities.exceptions.FireFoxException: Error happened when reading the profiles.ini file.
    09:46:51,790 ERROR [FireFoxUtil] oracle.oats.scripting.modules.browser.api.utilities.exceptions.FireFoxException: Error happened when reading the profiles.ini file.
    09:46:51,790 ERROR [DiagnosisExecutor] Did not auto-fix the problem.
    09:46:51,790 ERROR [DiagnosisExecutor] Suggestion for fixing: Please close the FireFox or check the integrity of Firefox default profile manually.
    The environment info generated by ODT is the following:
    Windows Vista 6.1 Service Pack 1, x86
    OpenScript 12.2.0.1.238
    Internet Explorer 8.0.7601.17514
    FireFox 3.6.23
    Java Runtime Environment 1.6.0_22-b04
    I looked the BrowserHelpersInstall.log and the result is:
    3/1/2013 9:58:51
    ==========================================
    01/03/2013 09:58:51 - [Info] The browser instance doesn't exist or is closed by users.
    01/03/2013 09:58:51 - [Info] IE BHO/FF Extension source directory is found at C:\OracleATS\openScript\plugins\oracle.oats.scripting.modules.webdom.ieToolbar_2.8.0.238\Installation\dependencies
    01/03/2013 09:58:51 - [Info] IE Toolbar source directory is found.
    01/03/2013 09:58:51 - [Info] .Net Framework is already installed. Version is 4.0.30319
    01/03/2013 09:58:53 - [Info] IE Toolbar files are copied.
    [Cmd execute] cmd.exe /C "C:\OracleATS\openScript\Oracle IE ToolBar\OpenScriptToolBar.exe"
    01/03/2013 09:58:56 - [Info] OpenScript IE Toolbar DLL is registered.
    [Cmd execute] cmd.exe /C reg add "HKCU\software\microsoft\Internet Explorer\Main" /V "Enable Browser Extensions" /T REG_SZ /D yes /F
    [Cmd execute ]OUTPUT > A opera‡Æo foi conclu¡da com ˆxito.
    [Cmd execute ]OUTPUT >
    01/03/2013 09:58:56 - [Info] IE Toolbar is enabled.
    01/03/2013 09:58:56 - [Info] IE Toolbar is installed successfully.
    01/03/2013 09:58:56 - [Info]
    01/03/2013 09:58:56 - [Info] IE BHO/FF Extension source directory is found at C:\OracleATS\openScript\plugins\oracle.oats.scripting.modules.webdom.firefoxExtension_2.8.0.238\xpi
    [Cmd execute] cmd.exe /C reg add "HKLM\software\mozilla\firefox\extensions" /V webdom@openscript /T REG_SZ /D "C:\OracleATS\openScript\plugins\oracle.oats.scripting.modules.webdom.firefoxExtension_2.8.0.238\xpi" /F
    [Cmd execute ]OUTPUT > A opera‡Æo foi conclu¡da com ˆxito.
    [Cmd execute ]OUTPUT >
    01/03/2013 09:58:56 - [Info] Multiuser execution setting for Firefox saved in registry.
    01/03/2013 09:58:56 - [Info] Firefox extension is installed successfully.
    01/03/2013 09:58:56 - [Info]
    Installation - Success
    Workspace clean up - Success
    Does anyone know how to solve the problem?
    Edited by: 983731 on 01/03/2013 06:02
    Edited by: 983731 on 01/03/2013 06:08
    Edited by: 983731 on 04/03/2013 04:40

    hi
    I had the same issue.
    Its because you have a non-English windows. and you dont have the"application data" folder, in spanish is called "datos de programa"(which path is harcoded in the browserHelpersInstaller.jar and the oracle.oats.scripting.modules.browser.api_2.7.0.361.jar)
    you must do this:
    1)give permission to the folder:
    run:
    takeown /F userfolder\Datos de Programa\* /R:
    icacls userfolder\Datos de Programa\* /grant Administradores:(F) /T:
    2) junck the datos de programa folder to application data
    run:
    mklink /j source-path target-path
    example: C:\Users\Maxi>mklink /j "C:\Users\Maxi\Datos de programa" "C:\Users\Maxi\Application Data"
    3) reinstall helper browsers.
    i hope this works to you.
    Edited by: 993710 on Mar 26, 2013 3:39 PM
    Edited by: 993710 on Mar 26, 2013 3:42 PM
    Edited by: 993710 on Mar 26, 2013 3:42 PM

  • How to attach input file in the Test Script in SECATT in ECC6 ?

    Hi ,
    How to attach input file in the Test Script in ECC6  in Tcode SECATT ?
    For Testing in SECATT in ECC6, how to attach input file which contains multiple records ?
    Best Regards,
    Padhy

    Hi and Welcome to the Community!
    Since you have balance, and the issue is in your Work domain, you need to work with your server admins, as it's possible they are forbidding (via IT Policy) the ability to do as you desire.
    Good luck!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • How to define Export parameter as Import parameter in next test script.

    Hi Experts,
    We have defined Purchase order no. as export parameter in ME21N transaction test script.
    Test configuration for ME21N transaction executed succesfully and the Purchase order No. appeared in the last message
    is the export parameter for next test script i.e. MIGO transaction.
    However I am unable to define this export parameter as Import parameter in next test script for MIGO transaction.
    Please suggest me the method to define the same.
    Please Help...
    Thanks in Advance
    Vikas

    Vikas,
    You need to create super script which is nothing but having the both the steps (Po creation & MIGO ) in this eCatt script. This can be achieved by using the REF command as ex. below.
    Create PO
    REF ( Z_CREATE_PO , Z_CREATE_PO_1 ).
    Create MIGO
    REF ( Z_CREATE_MIGO , Z_CREATE_MIGO_1 ).
    Z_Create_PO is the actual eCatt script that you recorded to create the PO. Z_CREATE_QUOTE_1 is the interface created by SAP. Similarly you have use the REF command to call the MIGO script inside this super script.
    To pass the export parameter from PO step to MIGO, double click the Z_CREATE_PO_1and define the export variable for PO number. And do the same on the interface for MIGO step.
    Follow the instructions if you need in this help document posted by another user in this forum
    http://www.sdn.sap.com/irj/scn/weblogs;jsessionid=(J2EE3417200)ID0134775250DB00634934533836311611End?blog=/pub/wlg/3497
    Note : Cut & paste the entire link above to view the document.
    thanks
    Venkat

  • Error During ECATT test script creation

    Hi,
    I am creating test script using SECATT t.cde. I select traget system and click on Pattern Button and provide input as follow.
    Group : UI Control
    Command : TCD (Record)
    Transaction : MM02
    When I click continue button, I am getting error "Transaction MM02 could not be found in Target System".
    I had check my RFC Configuration, its working properly.
    Please help me to solve this issue.
    Regards,
    Nisit

    Not sure what exactly you're asking, but here is a "how-to" article on eCATT creation:
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/50bec015-14f1-2910-6080-9874b3499052

  • How to use the RFC SDK as part of a QTP test script

    Hi there,
    after having recorded some business transactions, I want to insert some checks into the QTP test script: an easy example would be an existence check in a database table. Instead of recording a SE16 or SE16N, I would find the approach much more elegant and much more efficient to use a (VB-)programmed RFC call for this purpose.
    Unfortunately, I didn't find a way to address an RFC using the actual connection that QTP is working on. Creating a new connection would probably be possible but is not what I want.
    Any idea how I could proceed? Does anybody else have experiences in this area?
    I think this issue is not restricted to QTP but shared by any tool working on top of the SAP GUI Scripting API.
    Thanks and regards
    - Rüdiger
    Edited by: Rüdiger Plantiko on Nov 21, 2008 4:24 PM

    bigbrain28 wrote:
    > Thank You, cfsearching! I don't quite understand 100%
    how it works
    As all three of us indicated you use array notation for this
    type of
    requirement. In ColdFusion you can use array notation or dot
    notation
    to access structure data. Almost all data in ColdFusion is
    now some
    type of structure.
    I.E. #Form['myField']# is the same as #Form.myField#.
    The advantage is that with array notation you can do things
    you can not
    do with dot notation. You can reference elements that have
    keys that
    are illegal variable names such as one with a space.
    I.E. #url['my field'] is allowed, #url.my field# would fail
    or course.
    And you can concatenate the key string as we did with your
    example.
    I.E. #Form['aString' & aVariable]#
    There are many powerful things one can do with this
    knowledge. One can
    access record sets with array notations. This can allow for
    very
    sophisticated parsing of a record set.
    I.E. #myQuery['column'][row]#
    You can dynamical call a variable. Thus creating dynamic code
    that does
    not even need to know what variables exist until run time.
    I.E. #variables[anyName]#
    This just scratches the surface.

  • Test Script for Billing

    Hello Experts,
    I would like create test script for Billing.Since i have no clue about test script coz in my previous organization we have not made any script for testing.Now i would like to create testing for Billing.
    Could you all explain me what are the pre - requisites for testing only for Billing.
    What are the different ways for testing to perform since i have never worked on testing on documentations.
    Your reply would appreciate.
    Thanks
    Shri...

    Test script is nothing but unit testing through which you list down the steps that are needed to execute a test case and record the results.
    In your case, since you wanted a test script for billing, first you need to identify the different types of billing documents configured in production client.  For each and every billing document type, you need to create a test document and record in the following format
    Test Scenario No.
    Scenario:::Billing
    No.::TCode:::Description:::Input Data:::Output Data:::Remarks (OK/Error)
    We call this process as ASAP Methodology.  The prescribed format you can get in service market place.
    thanks
    G. Lakshmipathi

  • Handling runtime errors while recording a script.

    When I record a script, I have a couple areas of the target website that throw an exception within the browser of e-Tester ( but not in any normal browser ). It is a runtime error, and complains about an unteriminated string constant. I'm not interested in trying to fix the cause, I just want to deal with the dialog. Here are my questions:
    1. I want to first check to see IF the screen is present. It looks like a standard windows error dialog.
    2. IF it's present, I then want to select the 'No' button, because I don't want to debug it, I just want to close the dialog and move on.
    That's all I want to do. I've attached a screenshot of the windows dialog I want to handle.

    I'd love to be able to find out what is causing the crash, because then I could log a bug against the web page to have the unterminated string resolved. Any idea of how I could find this? Perhaps looking through the source of the page?
    Until I find a way to determine exactly what the problem is with the web page ( sorry, it's proprietary, so I can't post the code up here ), I'm going to write a little app to watch for the box, then close it.
    I just need to find a way to call an external app before I click on the web page. How do I call an external app from within e-Tester in such a way that the call is made, and the execution continues as normal? I do NOT want e-Tester to wait for the app to close before continuing.

  • Including a test script for other scripts in OpenScript

    Hi all,
    I am a newbie in OpenScript. I had created a "myfunctions" test script which have all the common functions for my scripts. I found out that, for the script to be called, we need to add it to the script assets. This will not be feasible in my case because there are many scripts that calls these functions and I cant add them to all. Is there any other method to include it (eg. Making it in a jar file and using import? or something of that sort?). Couldnot get any help from the net or the documentation. Please let me know a way to handle this.
    Thanks.

    Hi,
       Looks like the relative path information is not being properly resolved during Replay. Is the application URL being properly loaded in the Replay view? By "properly" I mean does it have the entire URL of the application with the protocol, server & port number?
    Regards,
    Satyajit

Maybe you are looking for

  • Field status as mandatory while creation of RE-FX Lease Out Contract

    Hi SAP Real Estate Friends, I have a requirement wherein we need to make the field status of some specific fields as mandatory for data input in RE-FX Lease Out Contract. The fields are mentioned below: 1. Profit Centre in Organizational Assignment T

  • How do I over ride an auto spelling correct?  Somehow I need to add the word into the system.

    I am trying to type a word into an email and it continuously over rides the word with other suggestions, even if I hit the period button and not the space button.  How do I add this word to my IPad?

  • Goods movement from PI sheet

    Dear Gurus, I am entering and saving the actual consumed quantity of components in the PI sheet but the stock is not reducing (In MMBE, same stock in unrestricted use before and after goods issue). Why? All replies will be rewarded. Regards, Jejesh.

  • Recovery qyuestion!

    Hi, I am running 8.1.7 on Sun Ultra 10. I backed it up in NOARCHIVELOG mode using RMAN without recovery catalog. But I didn't make a seperate control file backup as the document says. I swithched to ARCHIVELOG mode later. I tried to restore and recov

  • Trying to download new iphone 4 update and itunes cant connect to server?

    Im trying to download the new software and my itunes keeps telling me it cannot connect to the server, it this a general problem with itunes or my computer? Also is it worth downloading the new software?