Forms testing

Hello there,
We have an application that has lot of forms. We use most buttons of oracle toolbar in all these forms.
I was trying to write a regression test plan to test all the forms. Say for example: Form1, click on Search and replace. replaces 2 fields in form, whereas Form2 replaces only 1 field.
Form1 - need certain roles to access it, whereas Form2 doesn't need any.
Has anybody done this kind of regression testing and can you give me tips on how to write this document? Or can you recommend me a book or website?
Thanks a lot

The last site I was at used :
http://www.mercury.com/us/products/quality-center/functional-testing/winrunner/
I think (from memory) each Form required a call to a test director procedure upon start up.
Steve

Similar Messages

  • Web form tester

    Can any body tell me what is the url I should write in my browser to down load the web form tester through which i can send my connection information to the form server .
    Thanks in advance.

    I mean like we use isqlplus to access our database server from any computer that has no thing to do with oracle (there is no oracle installed in) only by using the browser by writing the following on the address bar:
    http://Ip: 80/isqlplus then it down load isqlplus page for inserting connection information. Now I'm looking for the URL that I should write on the address bar I can access my application server where is my forms and application logic is reside.
    Thanks for your patience

  • Web form tester. don't run the form.

    Dear all,
    i am using oracle 8i and forms 6i.
    i am trying to run the web form tester but it give error.
    i gave the forllowing parameters:
    form : D:\Accano\logonscreen.fmx
    Userid : mis
    other parameters : useSDI= yes ( what is this?)
    Look and Feel: Generic
    Color Scheme : Teal
    Web listener (HTTPD) Detail
    web host : aserver
    web port : 80
    the HTTP server is already installed.
    please hlpe me what is wrong?
    thanks
    Muhammad Nadeem

    ok so u had installed WebDB right?
    next thing have u configured your WebDB server...???
    now u will ask me how can I configure that...then the ans is when u finished
    installing forms....there must be one message box telling you view instruction....
    remember that...ok u can get it now from...."forms6iconfig.txt" in your forms home.

  • Installing second domain for forms testing environment?

    Hi!
    I've a physical windows server for running my forms applications (11.1). On installing fusion middleware suite I created a domain with the assistant. Further more another assistent configured my forms server into this domain.
    The problem is that I've no forms testing environment. So the idea was to create another domain for testing and setup a second forms server in this new testing domain. The pysical machine has enough power to server both domains.
    Is this a supported configuration and can it be done with the assistants?
    Thanks
    Markus

    I wouldn't say that the additional administration effort is much or bad. I also don't agree 100% that the dev instance don't influence the prod instance when both are hosted on the same server.
    When hosting both instances on one server and one oracle home you will always be on the same patchset on the OS and Oracle side.
    Consider you are encountering a bug in forms when developing a new feature which is fixed in a one-off patch. To test this one-off patch in dev you most certainly will have to take down the production instance too as both of them will access the same Oracle Home and Middleware Home. Same thing is for OS patches. If you are seperating dev and prod instances on different machines you have the possibility to test your configurations proper on your test machine without influencing production.
    This will guarantee you that you have always a tested environment in production.
    Think about scalability: developers tend to make boo-boos while developing new things. One forms session <can> take down a whole machine (I have seen that and I have done that - on a development machine). If this happens on a development machine you have 10 angry developers which can be calmed down with a sixpack beer; 100+ people plus the managment which should be working with the software you developed are not tranquilized so easy when they cannot work for 20 minutes because of a infinite loop in development ;).
    I agree that you might have additional license costs; but if memory serves Oracle VM and Oracle Enterprise Linux have no additional license costs which breaks down the costs to OFMW 11g. And I am not too sure if you have to pay (the full price) for development instances (I am a developer, not a sales person). But this is best discussed with your oracle sales representative.
    Again, this is just my opinion; maybe someone else can give you more input.
    cheers

  • Web form tester did not show

    I have installed Forms6i, Forms Server 6i, and JInitiator. When I followed the instruction to run the Web Form Tester. it only opened an empty browser screen. Help. Thanks in advance.
    Blake
    null

    Blake
    I'm having the same problem. Have you been able to resolve it.
    Thanks in advance
    Sandy
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Blake ():
    I have installed Forms6i, Forms Server 6i, and JInitiator. When I followed the instruction to run the Web Form Tester. it only opened an empty browser screen. Help. Thanks in advance.
    Blake
    <HR></BLOCKQUOTE>
    null

  • Form test in jsp

    I like to thank steve for the reply of the previous message posted .With the reply i have been able to resolve the problem .
    Another issue is that i can't find any data entered through my html form in my access database table.Can anyone help here? what should i do.
    I am new to jsp technology.I am from Nigeria.The code for the form and the jsp that handles the request is provided below.
    Test.html
    <form action="/Apps/Test.jsp" method="post">
    <center>ID <input name="id" type="text" >
    NAME <input name="name" type="text" >
    AGE <input name="age" type="text" >
    <input type="submit" value="Enter Entries"/>
    <input type="reset" value="reset Entries"/>
    </center>
    </form>
    Test.jsp
    <%@page contentType="text/html" import="java.sql.*"%>
    <%@page pageEncoding="UTF-8"%>
    <%
    Connection conn= null;
    Statement stat = null;
    String idNum = request.getParameter("id");
    String name1 = request.getParameter("name");
    String age1 = request.getParameter("age");
    try{
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
    conn= DriverManager.getConnection("jdbc:odbc:Tester","bart","college");
    stat=conn.createStatement();
    stat.execute("INSERT INTO STUDENT"+
    "VALUES(id,name1,age1)");
    stat.close();
    conn.close();
    catch(Exception e){e.printStackTrace();}
    %>
    <html>
    <head><title>JSP Page</title></head>
    <body>
    <%-- <jsp:useBean id="beanInstanceName" scope="session" class="beanPackage.BeanClassName" /> --%>
    <%-- <jsp:getProperty name="beanInstanceName" property="propertyName" /> --%>
    </body>
    </html>
    I am using Netbeans as my IDE,Microsoft Access as my database and Apache Tomcat as my web server.I need the reply urgently.Is there any setting and configuration i need to carry out before i can see any data in the database?

    Hi,
    Just try to replace your following jsp code ....
    try{
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
    conn= DriverManager.getConnection("jdbc:odbc:Tester","bart","college");
    stat=conn.createStatement();
    stat.execute("INSERT INTO STUDENT"+
    "VALUES(id,name1,age1)");
    stat.close();
    conn.close();
    catch(Exception e){e.printStackTrace();}
    %>This part should be replaced with following one...
    try{
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
    conn= DriverManager.getConnection("jdbc:odbc:Tester","bart","college");
    stat=conn.createStatement();
    stat.execute("INSERT INTO STUDENT"+
    "VALUES('"+id+"','"+name1+"','"+age1+"')");// if in your database all fields are of type 'varchar'
    stat.close();
    conn.close();
    catch(Exception e){e.printStackTrace();}
    %>hope this helps you...
    Regards,
    Gaurav Daga

  • Security Certificate issue in Application Testing Suite for EBS/Forms Test Script

    I am running an OpenScript EBS/Forms test in OATS and my test is failing when it tries to load the first screen.  It appears to be hitting a page stating that there is a problem with this website's security certificate.  I have not had this problem before, and would like some advice on fixing the issue.  Thanks.

    HI ,
    I am facing same problem. If anyone has any way out / work around for  the same, please share
    Thanks in advance for your support

  • Dunning Notice Sapscript form test

    Hi,
    I'm doing a Z style dunning notice form from F150_dunn_01 and want to test it in F150. But I don't find any account have overdue to test it. Could any expert tell me how to fake an overdue balance in a customer account to show the dunning notice? Thanks a lot.
    Ryan

    HI
    GOOD
    FOR THIS YOU HAVE TO CREATE A INVOICE AND THAN YOU HAVE TO CREATE A BILLING FOR A PARTICULAR CUSTOMER WHICH YOU CAN DO USING FB01 AND FB05 AND THAN YOU CAN TEST IT.
    THANKS
    MRUTYUN

  • Request to SAP - Adobe Forms test certificate missing / expired

    Hello,
    the Adobe certificate present on the SDN page:
    http://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/70aa75cc-6ac3-2910-c78c-ade192ec861e
    does not provide a valid certificate for 2012. There's been some error and this certificate is only valid until January 2011 (!).
    Please provide a new test certificate.
    Best regards!
    Piotr Sliwinski

    Hi Pradeep,
    I think that you may not get the performance running adobe forms while using citrix. For using portal applications you need to open the port to access the client portal through VPN.
    Regards,
    Arafat

  • Forms test tools (functional & load testing)

    Hi,
    we are looking for test-tools.
    primary we want to automate functional tests of our forms app (10g).
    secondary we want to stress our app by load testing.
    which tool do you use?
    thanks for any suggestions!
    florian.
    p.s. the mercury tools are too expensive for us ;-)

    Forms2test is a load and stress testing tool of testNext

  • Single form testing in multi-form application Question

    I am working on a application which contains may form objects but they are all directly or indirectly called from one "main" form. Within this "main" form, we are initializing global variables used throughout the application. This works well for the application as a whole but doesn't work when we are debugging a specific module within forms builder because the global variables aren't available. So, I need to know if it is possible to setup server params, config files or whatever to enable initialization of variables outside of an individual form for use in the form. I hope this makes sense.
    Thanks for any help!

    The easiest way would be to create an "initialize"-procedure in a pll, which simple default all the needed globals, if the do not already exist (using DEFAULT_VALUE), and call that procedure form every form in the PRE-FORM-trigger. It won't affect the "integrated" system because it only defaults values if they are not already initialized.

  • How does "Forms Table Test" work?

    Hey guys,
    I want to use a "forms table test" on the order management lines form, but it doesn't show any reaction.
    In which forms do I use table forms test?
    best regards
    dewi

    Very simple. This table existed in Oracle Version 3 and was used prior to PL/SQL for performing computations. The dummy column is just that. I always returns one row, one column if you select from it.
    Now: DON'T DROP THIS TABLE!!!!!! I decided to see what would happen I did drop the table. Ever hear of INSTANCE CRASH? The Oracle Kernel uses this table Internally for consistency purposes. Shame on Oracle for saying in Version 6 that this table is no longer needed. Also, if your application does a select <sequence name>.nextval from DUAL, change your code as you'll see LOTS of excessive IOs from using this table.

  • Testing forms in linux machine

    Hi,
    How can I test forms application after installing 10g application server in linux machine using
    http://<your_server>:7778/forms/frmservlet?form=test.
    In windows , jinitiator is automatically installed, but in linux how can I configure?.
    Regards
    JIJU

    Hi,
    should work the same if the client machine is Windows. If the client machine is Linux, you need to use the JavaPlugin as described in the documentation (see application server documentation)
    Frank

  • Frm-92101 when try to run the test form

    dear all,
    i have just install OAS 10g rel 2 on windows 2003 server
    when i try to call http://apps10
    - where apps10 is the server name -
    welocme sreen get ok
    when i try to access a test form
    http://apps10/forms/frmservlet?form=test.fmx
    i got frm error frm-92101 and details are following :
    proxyHost=null
    proxyPort=0
    connectMode=HTTP, native.
    oracle.forms.net.ConnectionException: Forms session <4> failed during startup: no response from runtime process
         at oracle.forms.net.HTTPNStream.getInfoFromServlet(Unknown Source)
         at oracle.forms.net.HTTPNStream.<init>(Unknown Source)
         at oracle.forms.net.HTTPConnection.connect(Unknown Source)
         at oracle.forms.engine.FormsDispatcher.initConnection(Unknown Source)
         at oracle.forms.engine.FormsDispatcher.init(Unknown Source)
         at oracle.forms.engine.Runform.initConnection(Unknown Source)
         at oracle.forms.engine.Runform.startRunform(Unknown Source)
         at oracle.forms.engine.Main.createRunform(Unknown Source)
         at oracle.forms.engine.Main.start(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)

    Are you sure that all the file in the project is execuatable ?
    What error number you are getting, Can you post your VI.
    Kudos are always welcome if you got solution to some extent.
    I need my difficulties because they are necessary to enjoy my success.
    --Ranjeet

  • Unable to request test.fmx after installing Forms 10.1.2.0.2

    I've just installed Developer Suite 10.1.2.0.2 on Windows platform, then I
    1) started the OC4J instance
    2) called the test.fmx
    http://<localhost-IP>:8889/forms/frmservlet?form=test.fmx
    Firefox browser gives me the following error message
    "Error instantiating web-application"
    No application named 'forms' found in the server.
    Does anyone have any idea what's wrong?
    My hunch is that not even the Forms servlet is starting up.
    Thanks.

    Senthil,
    the "90" was removed from the file names and virtual paths in 10.1.2. Try the URL as follows:
    http://server.domain:port/forms/frmservlet
    Frank

Maybe you are looking for

  • WEBDAV Connection and permission to upload to no Mac Webdav server

    Our school district recently installed a new web server running WEBDAV ( I am sure it is Windows product). I use golive and dreamweaver (Latest editions) also with finder I cannot upload new files. In finder, I can see the files but I cannot copy fil

  • IP Addresses with Airport and Snow Leopard Server

    I have DNS running on my MacMini Server with a static ip address of 10.1.0.201, the dns resolves within the network. But I get a double NAT issue, I believe this might be a result of how I have setup the IP addresses. My DSL router ip address is 192.

  • Why do we go for inner classes in java?

    why cant we inherit the classes instead of having inner classes. what is the exact difference between the inner class and subclass. can anyone please explain me with some examples

  • IPhoto Enhancement equivilant in Aperture?

    I often use iPhoto's Enhancement feature quick down and dirty photo adjustments that often do just what I need to improve my underexposed photos. So I'm wondering, is there a way I can get that one click type of enhancement in Aperture? I'm using the

  • Calculating Fan in / Fan out of a metrics project

    Hey I am in the process of a coding a OOD metrics project. I am 90 percent done I just need a few more metric measurements to add to it, and two of the hard ones are fan in and fan out. The project consists of a GUI which allows opening of multiple f