Different results on consecutive runs of OFT for Web Applications

I am using Oracle Functional Testing for Web Applications to test share point site [using: OS = WinXP SP3, default browser = IE8.0.6]
I’ve recorded simple scenario - browsing through two pages (home page > menu link > page 1)
there is no user input involved – just browsing)
problem:
I am running the same test multiple times and I get different results – sometimes (less often) I get clear ‘Passed’ results but more often I get warnings about missing items, Severe content differences)
upon comparing Master and Tested HTML I see that test fails because no content is being logged under Tested:HTML node (the content displays properly in right browser pane)
any hints?

You probably need a close no save step at the end of your action.
In the save for web dialog, when you record the action, save to the folder you
want the batch dialog to put the images. Then set the batch dialog as below.
MTSTUNER

Similar Messages

  • How To run Currency translation for Consolidation Application in BPC NW

    In "How To do Currency Translation for Financial Application in BPC 7 NW", the author mention that there is another "How To run Currency translation for Consolidation Application in BPC NW", anybody know where to get it?

    Hi...
    Check if the below links are useful to you.....
    http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/6052a57b-8c64-2c10-b3a5-b0378ff21243&overridelayout=true
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/c0ea1fd8-d6d3-2a10-c1ab-e8164dd98316
    You can find all How-to docs in the below link
    http://wiki.sdn.sap.com/wiki/display/BPX/EnterprisePerformanceManagement%28EPM%29How-to+Guides

  • OFT for web : does not record in popup windows

    Hello (again)
    I have a question :
    I tried openscript to test my application (oADF based) and although it was got popup windows, all is working fine and recording.
    Now with OFT for web, popup windows are not working (in recording mode, in popup window, buttons are not working) and not recorded !
    Is there something in OFT for web parameters that I should change to have same behavior than openscript ?
    thank you
    Michael.

    Hi,
    OFT comes with an Embedded browser so while record all navigations must be with in that browser only. You can try OFT Demo application see if you have any external pop ups in there as far as I have seen that demo application does not have any pop ups. Any external windows will not be recorded in OFT as far as I know. You can use Open script to do recordings in the external window.
    IE popups can be handled in OFT for example the the https web page intialization warning IE pop up can be handled.
    Thanks

  • Best Server Role for Web Applications

    Hi,
    I'm running SQL Server 2008 R2 Express and using Microsoft SQL Server Manager Studio to administer it.  I have a web application that does read, add, update, and delete to the database and I am currently using the sa account - which is of course not
    a good idea.  I want to create a new user but I don't know what the best practice is for web applications and also security.  The options I have are:
    bulkadmin
    dbcreator
    diskadmin
    processadmin
    public
    securityadmin
    serveradmin
    setupadmin
    sysadmin
    Thanks.

    Hi mark_sti,
    Based on my understanding, you want to create a new user of the database. Using this new account, a web application could read, add, update, and delete the database.
    The options you provide are fixed server roles. For more information about fixed server roles, please refer to this article:
    Server-Level Roles.
    In this scenario, you need db_datareader fixed database role and db_datawriter fixed database role. Db_datareader fixed database role can read all data from all user tables. Db_datawriter fixed database role can add, delete, or change data in all user tables.
    To add two database roles, you should map the login to the database which is used by a web application in Login Properties. Then create a new database user, check Db_datareader fixed database role and Db_datawriter fixed database role on Membership page of
    Database User. About permission of different database roles, please refer to this article:
    Database-Level Roles.
    If you have any question, please feel free to ask.
    Best regards,
    Qiuyun Yu

  • How sharepoint understand when user requests for web applications by their DNS names

    HI
    I configured Alternate access mapping in my sharepoint farm for default ,intranet zones
    and spt farm has two web front end servers and they load balancing by F5 device
    in WFE servers there are different web applications are running on different ports
    so here I want to know how load balancing works, load balancing configured in F5 device.
    when users request a webapplication from browser (ex http://cms) where this request will go
    1)when I ping cms and other web applicaations  it returns me a loadbalancer  server IP  for all web applications;
    ping cms : it returns 10.xxx.0.80 , same ip returns when I ping for other web app
    but ex CMS web application run on the 10.xxx.1.26:81 port in sharepoint server
    2) and these sharepoint web applications running on different ports in sharepoint  web servers , so here  how sharepoint understand when user requests for web applications by their DNS names
    http://cms and http://products  etc
    adil

    I'm not sure if the F5 can add a port number (I'm not an expert on load balancers).  But in general if you design the SharePoint site to run on port 81 then you need to have port 81 appended to the request or it won't work.  http://cms in your
    example would take you to http://cms:80 not http://cms:81.  But in general DNS will resolve the address back to the F5 load balancer.  The load balancer will look at the header of the HTTP request (which contains the original address you requested)
    and forward the request to the appropriate web front end IP address.  If your web front end is using one IP address for multiple sites then those sites need to be differntiated by using a custom port like 81 (which must be included in the original request)
    or because a host header was bound to the web application when it was created.  If they are running on different port numbers then the request must include the port number by the time it gets to the SharePoint server.
    Paul Stork SharePoint Server MVP
    Principal Architect: Blue Chip Consulting Group
    Blog: http://dontpapanic.com/blog
    Twitter: Follow @pstork
    Please remember to mark your question as "answered" if this solves your problem.

  • Function authorize in packages for web applications in Oracle XE

    Hello,
    i have created a simple test package as follows:
    PACKAGE TEST IS
    function authorize return boolean;
    procedure test;
    END;
    PACKAGE BODY TEST is
    FUNCTION authorize return boolean is
    BEGIN
    if OWA_SEC.GET_USER_ID = 'test' then
    return true;
    else
    return false;
    end if;
    END;
    PROCEDURE test is
    BEGIN
    htp.prn('Hello World!');
    END;
    END;
    i have also cerated a DAD with this command:
    DBMS_EPG.CREATE_DAD (' test ', '/test/*');
    i want to run this link in my web browser: http://127.0.0.1:8080/test/test.test
    When i use a real database user then the function test works ok.
    But i want to make it work with the user name "test" throw the function authorize.
    In my opinion i am creating a DAD in a wrong way. Can anybody help me?
    Thanks in advance for your help.

    Hi,
    AFAIK, there is no official document which states that "Oracle Functional Testing for Web Applications" is certified with Oracle E-Business Suite 11i/R12. I assume it should work with Forms 10g but not with Forms 6i, so it should work (does not mean it is certified) with R12.
    I would suggest you log a SR and confirm this with Oracle Support.
    Regards,
    Hussein

  • Setup Developer for web application.

    Hi all
    I am trying set up developer 9i for web application.
    I have Oracle 8 client installed on my computer.
    Which components should I dowmload and installed on my computer.
    I have downloaded.
    Application Server 9i core and developer 6i.
    Are they enough to setup the evironment?
    Regards
    Hao

    Yes that would be enough.
    Install each one in a different Oracle_home.

  • Problem when running the cookie WAR web application

              This relates to the cookie example mentioned in your "Web Application (WAR) examples" section. This is the example where a cookieWar.war is created and moved to the /weblogic/myserver directory. I followed the exact steps mentioned therein. but when I'm loading the "http://localhost:7001/cookie" I noticed that I'm getting the following excetion in the WebLogic console,
              Thu Sep 21 06:29:45 GMT+06:00 2000:<I> <RMI> Registry started Thu Sep 21 06:29:45 GMT+06:00 2000:<I> <EJB> 0 EJB jar files loaded, containing 0 EJBs Thu Sep 21 06:29:45 GMT+06:00 2000:<I> <EJB> 0 deployed, 0 failed to deploy. Thu Sep 21 06:29:49 GMT+06:00 2000:<E> <HTTP> Could not find Web application '/weblogic/myserver/cookieWar.war' java.io.FileNotFoundException: WEB-INF/web.xml XML file not found in jar file at weblogic.xml.dom.DOMParser.getDocument(DOMParser.java:93) at weblogic.servlet.internal.dd.DescriptorLoader.<init>(DescriptorLoader.java:132) at weblogic.t3.srvr.HttpServer.loadWARContext(HttpServer.java:583) at weblogic.t3.srvr.HttpServer.initServletContexts(HttpServer.java:559) at weblogic.t3.srvr.HttpServer.start(HttpServer.java:388) at weblogic.t3.srvr.T3Srvr.start(T3Srvr.java:1305) at weblogic.t3.srvr.T3Srvr.main(T3Srvr.java:827) at java.lang.reflect.Method.invoke(Native Method) at weblogic.Server.startServerDynamically(Server.java:99) at weblogic.Server.main(Server.java:65) at weblogic.Server.main(Server.java:55) at weblogic.NTServiceHelper.run(NTServiceHelper.java:19) at java.lang.Thread.run(Thread.java:484)
              Thu Sep 21 06:29:50 GMT+06:00 2000:<E> <HTTP> Error creating servlet context for Web application '/weblogic/myserver/cookieWar.war
              Please let me know how to overcome this problem
              

    Did you ever resolve this problem?  If so, I am experiencing the same problem.  Is it possible for you to share the solution? 
    Thank you.
    Jim

  • Configure Logical Address for Web Applications-Hyperion 11.1.2

    Hello,
    I have f5 load balancer infront of two foundation servers and I have not yet configured the Logical address for web applications with Loadbalancer DNS name/hostnmae. I can access all of web applications through Load Balanced URL. Do I Still need to configure Logical Web Address for web applications ?
    Thank you so much !

    To add to this part of the reason for load balancing is usually to support high availability (in addition to scalability). Without that logic address being setup you will find certain configuration items are pointed to one server or another and if that one server is brought down it impacts key functionality of the whole environment.
    You should consider a test of the infrastructure by purposely bringing down services and/or servers to ensure you still have a fully working environment with the other redundant components. This test may take half a day to several days to really go through a full regression test of key features while taking key pieces down.
    Regards,
    John A. Booth
    http://www.metavero.com

  • How to capture memory usage for web application

    In OATS openscripts, how to capture memory usage for web application? Does it have the exisitng java method that we can call to get the memory data (e.g. peak bytes, private bytes) consumed by web application?

    JProbe

  • How to run notepad from a web application

    hi
    can any body know,how to run notepad from a web application under tomcat

    You already asked this question:
    http://forum.java.sun.com/thread.jspa?threadID=5150005&messageID=9561597
    Obviously running notepad on the clients PC is not possible (ignoring active x)

  • Ho w to run exe from a web application

    hi
    is there any chance to run exe from a web application under tomcat.
    plz tell me

    Please make the extra effort to write out words such as "please" and "your". The extra keystrokes won't cost much in the way of time, and the enhanced clarity will be appreciated by those communicating on a forum with international readership.
    What don't you understand about the previous answers?

  • ECMA 2.0 for web application

    I coded for ECMA 2.0 for web application using WCF  and deployed the management agent dll in Extension folder with WCF config file named as app.config . I am getting the error at creation of Management agent in FIM synchronization at the time of 
    Refresh Interfaces as The Extension could not be instantiated. May be FIM is unable to read WCF config file from extension folder of FIM sync. Or is there any other thing m missing? . Can any body suggest me.

    Have you tried to put it directly in Synchronization Service binary root folder?
    In the past when we needed to have config file for our MA we have put it in Synch engine folder and registered as app section within either dllhost.exe.config or miisserver.exe.config. THen we had no problem with accessing it. 
    Tomek Onyszko, memberOf Predica FIM Team (http://www.predica.pl), IdAM knowledge provider @ http://blog.predica.pl

  • Send an email to all user in Oracle Test Manager for Web Applications

    I have administrator access to Oracle Test Manager for Web Applications. How can I send email to all user in the system (Oracle Test Manager for Web Applications)?
    Thanks
    Katherine
    Edited by: Katherine on 20/12/2010 16:38
    Edited by: Katherine on 20/12/2010 16:39

    Hi ,
    You can create a single dynamic distribution group with the condition to have only the mailboxes in exchange as its members . Then when a person send an email to that  Dynamic distribution group it will get distributed to all the mailboxes
    in exchange.
    Note : Most important feature in the dynamic group is that the membership of that group will be maintained automatically and also along with that we can have group membership by defining the recipient types/OU /rules.
    I agree with ED and also based on my knowledge you cannot achieve your scenario without Distribution groups or dynamic distribution groups.
    Thanks & Regards S.Nithyanandham

  • Which combination is good for web-application ?

    Which combination is good for web-application
    (struts,hibernet,spring) or (jsf,hibernet,spring)?
    Plz let me know if any one have any knowledge on this...
    Thanks and Regards
    kundan krishna

    There is no definite answer to your question. Removing the common elements, I think your question boils down to, which is better? Struts or JSF? Struts is an action-based framework whereas JSF is component-based. JSF has a standard specification with implementation from multiple vendors whereas Struts is just a third-party (Apache) framework. Struts has been around for a real long time compared to JSF. Hope these pointers help. I suggest you read up more on these frameworks before making a final decision.

Maybe you are looking for

  • Adding Background Music Underneath Narration on a Single Slide in Capt 5

    I just finished putting together my first Adobe Captivate 5 project and  there is one last detail I need to learn how to do. I have recorded  narration on every slide. I now want to insert background music  underneath my title (first) slide and on th

  • HT1199 IMAC with purple pixels scattered across the screen at start up

    This happens intermittently when I start up the IMAC. Re booting the IMAC is becoming more frequent, and performance is slowing. The latest has been the blue tooth mouce can't be found at start up, so it is taking a couple of reboots to get that far.

  • How to make a JList realtime searchable

    I have a JList with data initialized from a Vector<String> and a JTextField which fires an event when a character i typed. What I need is for the JList to be trimmed down in realtime. When I type 'E' I want everything in the list that begins with an

  • How to determine worklfow container element  for BUS2031?

    Hai, I am new to W/F. I would like to know how to detemine workflow container element  for Customer Quotation generated(BUS2031)- [event] created.ie based on what? Example :&Jquotation&,&JtransactionCode& etc..... any screen shot docu for binding/imp

  • 6120 Classic, SMS won't update with the name of th...

    Hi, well this is the problem. Suppose I receive an SMS from a person before I enter that person's number in a contact entry, the "From:" of the sms will be displayed as (ex.) +123123123 which is the phone number of the person that sent the SMS. When