Recording right-click forms menus in OpenScript

I seem to have trouble recording right-clicks and the subsequent menus in forms. In a receivables transaction in which I look at a customer's orders, I am supposed to right-click one of the orders in the form and select "transaction workbench" to open a new form, but OpenScript wouldn't record those steps. As I result I kept getting "Component xxxx does not exist" during playback. I ended up having to select that option from the menu bar. Is this a known limitation?
Thanks.

also, how can you record context menu in "Oracle Functional Testing for Web Applications", since it looks like it is recorded but when I played it again, it give me error

Similar Messages

  • I can't left click to select or right click for menus. This works in IE, what do I need to do to get this to work in firefox?

    I don't understand why this doesn't work. My OS is vista. The right click for menus stopped working several months ago, so I have been using IE when I need that. The left click to select stopped working 2 days ago. So now firefox is unusable unless I can figure out why it is doing this.

    -> click Firefox button and click Exit
    -> Start Firefox in Safe Mode (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    https://support.mozilla.com/kb/Safe+Mode
    -> Firefox Safe Mode window will open. DON'T SELECT ANY OPTIONS, just click Continue in Safe Mode
    Check and tell if its working while you are in Safe Mode.

  • "Bad Applet class name" error while recording on Oracle Forms 11g through OpenScript (JRE 1.7.0_17)

    Hi,
    I am trying to record automation functional test script on Oracle Forms 11g using OpenScript.
    Able to open the browser, but after accessing application URL, getting application error as "Bad Applet class name"
    Java Plug-in 10.17.2.02
    Using JRE version 1.7.0_17-b02 Java HotSpot(TM) Client VM
    c:   clear console window
    f:   finalize objects on finalization queue
    g:   garbage collect
    h:   display this help message
    l:   dump classloader list
    m:   print memory usage
    o:   trigger logging
    q:   hide console
    r:   reload policy configuration
    s:   dump system and deployment properties
    t:   dump thread list
    v:   dump thread stack
    x:   clear classloader cache
    0-5: set trace level to <n>
    SSV dialog is suppressed........
    cracked oracle.forms.engine.Main
    Loading cached Forms Jars ...
    Is this version (Oracle forms 11g, JRE 1.7.0_17) supported by OATS-OpenScript ?
    Please advise if there is any work around here.
    Thanks.

    From the last OATS release notes available in the C:\OracleATS\docs directory:
    4.1 Oracle Functional Testing/OpenScript
    Oracle Functional Testing’s OpenScript scripting platform has the following system
    requirements:
    ■ Operating System (32-bit and 64-bit versions): Windows XP, Windows Vista,
    Windows 2003, Windows 7, Windows 2008, Windows 2008 R2.
    ■ Memory: Minimum 1 GB
    ■ System: x86, 32-bit or 64-bit processor, 2.6 GHz or faster
    ■ Disk Space: 4 GB minimum
    ■ Browser: Internet Explorer 7.x, 8.x., 9.x; Firefox 3.5/3.6, 6.x, 10; Chrome 27+
    (playback only).
    ■ Java Runtime Environment: JRE 1.6 minimum (up to build 38), JRE 1.7 (up to build
    11) .
    So basically, it's not supported... Can you try with another JRE version?
    As always don't forget to run OpenScript as administrator on W7/8 or equivalent
    JB

  • Make my right click context menus occur only in selected divs

    Hi
    I want to make some context menus for certain divs in my website page. So the person viewing the site sees a link to a music file and they right click on the link to get more options but instead of the default browser options coming up, a customized list comes up.
    This is just an example. The real thing is that I want multiple menus that work in selected divs only. So if you click in most places on the page you get the default context menu but if you click within certain divs you get a different menu.
    So far everyone has just given me java script but i can't set html links inside of javascript. Can anyone tell me how to take this script and make it apply to divs instead of the whole document?
    <script src="SpryAssets/SpryTooltip.js" type="text/javascript"></script>
        <script type="text/javascript">   
        var contextMenuObj;
        var MSIE = navigator.userAgent.indexOf('MSIE')?true:false;
        var navigatorVersion = navigator.appVersion.replace(/.*?MSIE (\d\.\d).*/g,'$1')/1;   
        var activeContextMenuItem = false;
        function highlightContextMenuItem()
            this.className='contextMenuHighlighted';
        function deHighlightContextMenuItem()
            this.className='';
        function showContextMenu(e)
          contextMenuSource = this;
          if(activeContextMenuItem)activeContextMenuItem.className='';
          if(document.all)e = event;
          var xPos = e.clientX;
          if(xPos + contextMenuObj.offsetWidth > (document.documentElement.offsetWidth-20)){
           xPos = xPos + (document.documentElement.offsetWidth - (xPos + contextMenuObj.offsetWidth)) - 20;
          var yPos = e.clientY;
          if(window.document.body.scrollTop > 0)
              yPos = (window.screen.Height) ? e.clientY + window.document.body.scrollTop -20 : e.clientY -20;
            else if (window.pageYOffset)
              yPos = (window.pageYOffset > 0) ? e.clientY + window.pageYOffset -20 : e.clientY -20;
            else
            { yPos = e.clientY -20; }
          contextMenuObj.style.left = xPos + 'px';
          contextMenuObj.style.top = yPos + 'px';
          contextMenuObj.style.display='block';
          return false;
        function hideContextMenu(e)
            if(document.all) e = event;
            if(e.button==0 && !MSIE){
            }else{
                contextMenuObj.style.display='none';
        function initContextMenu()
            contextMenuObj = document.getElementById('contextMenu');
            contextMenuObj.style.display = 'block';
            var menuItems = contextMenuObj.getElementsByTagName('LI');
            for(var no=0;no<menuItems.length;no++){
                menuItems[no].onmouseover = highlightContextMenuItem;
                menuItems[no].onmouseout = deHighlightContextMenuItem;
                var aTag = menuItems[no].getElementsByTagName('A')[0];
                var img = menuItems[no].getElementsByTagName('IMG')[0];
                if(img){
                    var div = document.createElement('DIV');
                    div.className = 'imageBox';
                    div.appendChild(img);
                    if(MSIE && navigatorVersion<6){
                        aTag.style.paddingLeft = '0px';
                    var divTxt = document.createElement('DIV');   
                    divTxt.className='itemTxt';
                    divTxt.innerHTML = aTag.innerHTML;
                    aTag.innerHTML = '';
                    aTag.appendChild(div);
                    aTag.appendChild(divTxt);
                    if(MSIE && navigatorVersion<6){
                        div.style.position = 'absolute';
                        div.style.left = '2px';
                        divTxt.style.paddingLeft = '15px';
                    if(!document.all){
                        var clearDiv = document.createElement('DIV');
                        clearDiv.style.clear = 'both';
                        aTag.appendChild(clearDiv);       
                }else{
                    if(MSIE && navigatorVersion<6){
                        aTag.style.paddingLeft = '15px';
                        aTag.style.width = (aTag.offsetWidth - 30) + 'px';
                    }else{
                        aTag.style.paddingLeft = '30px';
                        aTag.style.width = (aTag.offsetWidth - 60) + 'px';
            contextMenuObj.style.display = 'none';       
            document.documentElement.oncontextmenu = showContextMenu;
            document.documentElement.onclick = hideContextMenu;
        </script>
    If anyone has an alternative to this that will allow me to apply the following link to one of the items in the  menu I'd like to hear it.
    This is the link that I want to use: <a href="Test Audio File.mp3"  download="Test Audio File.mp3">
    Thanks
    Tohorhilau

    Hi, thanks for the quick response!
    While trying to find info on how to fix this I looked up some context menu addons for FF and tried one. It didn't work so I uninstalled it and after that everything was back to normal. Odd, but there you have it. I still don't know what went wrong in the first place but for the moment it appears to have cleared up.
    Next time though I will try loading into Safe Mode if I find any issues (I forgot there was one!).
    Thanks for getting back to me again.
    GC

  • How to remove old items from right-click contextual menus?

    So, I've installed two versions of Photoshop. The older CS4 and then recently upgraded to CS5. I've uninstalled some items (Photoshop CS4, Illustrator CS4) from the system using the Adobe uninstaller. But for some strange reason, if I control-click or right-click on an item, say a PDF, Photoshop CS4 or Illustrator CS4 Still show up in the list ...
    I've searched the ~/Library/ folder and can't find a Contextual menus folder.
    In the /Library/Contextual menus folder only 1 item is listed even if I show all files.
    Any ideas? I'm very much lost and I would really like to have the applications that no longer exist on the drive removed from the list... Thanks in advance

    If you want to learn more about OS X and other Apple stuff there are a few sites you might want to look at:
    http://reviews.cnet.com/macfixit/
    http://mactips.info/
    http://osxdaily.com/
    http://www.macosxtips.co.uk/
    Thanks for the star

  • Labview edit time menu and right click popup menus

    How can i add a menu item to the labview edit time menus and to the right click popup menu of any selected object in a block diagram?
    I would like to integrate commonly used tools by me out of the springboard scripting tool into actual labview.
    Solved!
    Go to Solution.

    It sounds to me like you are looking for something like the Right-Click Framework.  Some people really like it, I have not used it extensively myself.  I've had a request to convert a quick drop shortcut into a RCF plug-in, I'll see how it goes.  I have also longed for a good way to hook into the LV IDE to add my own tools, what I find are useful, but not fully satisfactory solutions.
    1)  Right-Click Framework:  Some initial startup costs in terms of downloading and installing.  Start up is a bit slow (on my machine), and the workflow is a bit different than what I am used to:  Select an object, press the hotkey, right-click.  You can get used to it, but it is not as responsive as a built-in right-click since you can't right-click in one action.  It seems to be easily extensible, I'll know more in a day or two.
    2)  Quick Drop:  Built into LV.  Slow startup like RCF.  Fairly easily extensible.  Not context aware (unless you build it in to your plug-in), so you have to choose your letters wisely.  After the initial pain, the response time is not shabby, does require the extra Ctrl-Space action.  
    3)  Tools Menu:  I drop a few things in here, like my custom connector pane editor.  Not bad, but there are no keyboard shortcuts (what a pain), so it is good for actions that you might call once or twice on a given VI.
    In short, all of these methods require extra clicks or keypresses and are a bit sluggish.  If something like copy and paste behaved this way we would never use LV again, but if your tool truly saves you a bunch of steps it is well worth it.  I have almost run out of letters to use for my QD shortcuts.
    Addedendum:  Personally I am not quite ready to start talking to my computer, but LVSpeak seems pretty cool, Smashy Smashy.

  • Right clicking (former PC user)

    As stated, I am a new convert. I am used to right clicking on a PC to download things from the net. How do I do this from a Mac? Also, Burning DVD's is there a specific format of DVD? + or -? Help me!! - Please

    I am used to right clicking on a PC to download things from the net. How do I do this from a Mac?
    Press the Control key or place two fingers on the trackpad and press the button.
    Also, Burning DVD's is there a specific format of DVD? + or -?
    All recent Macs can use both formats.
    (33491)

  • Mouse Right Click Menus flash and are hard to read

    I am using Windows 7, and on FF 14.0.1.
    Basically, I am having the exact same issue as is described here:
    https://support.mozilla.org/en-US/questions/753329?as=aaq
    When I right click on menus, or when I go to the Firefox menu, the menu is bordered, but it is transparent. If I click on the location where a menu option is, that option is enabled (open new tab, etc). Or if I use the shortcut key, that also works.
    But it's a big pain.

    Do you use a custom theme or any add-ons that customize menus?
    This was helpful to some users in the other thread: did you try disabling graphics hardware acceleration? Since this feature was added to Firefox, it has gradually improved, but there still are a few glitches.
    You usually need to restart Firefox in order for this to take effect, so save all work first (e.g., mail you are composing, online documents you're editing, etc.).
    orange Firefox button ''or'' classic Tools menu > Options > Advanced
    On the "General" mini-tab, uncheck the box for "Use hardware acceleration when available"
    If you restart Firefox, is the issue resolved?

  • [Automation] QTP and right-click support

    I tried to record a click-right on a DataGrid component without success.
    Is there some kind of limitation in QTP/Flex about that ? Does a workaround exist ?
    Thank you in advance,
    Olivier

    Hi
    QTP does not record right click on components this is done by design. There is already an enhancement request for the same kindly vote on it . http://bugs.adobe.com/jira/browse/FLEXENT-1084
    Regards
    Shanaz

  • Wired Mighty Mouse and right click on my intel  imac

    Hi,
    This is a stumper!
    1) Wired mighty mouse stated to lose right click functions. Control click
    works fine but right click with menus is gone.
    2) Tried steer mouse. No change
    3) Deleted hidmouse user prefs. No change.
    4) System Archive and install. no change
    5) Clean install and Account reinstall (by hand). no change
    6) Nuke and Pave. no change
    7.) Pram reset. no change
    8) Mouse works on other Macbook- not a mouse problem.
    9) Second Mighty mouse exhibits the same problem.
    10) logging into second account. no change
    11) Other 2 button mice work!
    12) I like my mighty mouse, but I need right click!!
    13) Tried Apple Dev hid driver debug . no change
    14) Tried a bunch of other things but this has me stumped....
    (and I'm Apple Certified) any other suggeestions or software
    I can try? Context plugins are ok...but I'm not sure if there are other prefes to deleted? Also, a totally fresh install should have fixed this...what's going on here? I need to know.

    What is strange about my mighty mouse which also experiences similar issues is that you have to be careful where you are pushing it. My right tbutton is set as a control click but if I don't push it in the very upper right hand of the mighty mouse it behaves as a single click. The left hand button, as such, does not seem to be as sensitive to placement as the right hand one. For a long while I could not get it to work at all, until I figured out where I actually had to strike it.
    I had never used a mighty mouse until I purchased a new iMac a couple of weeks ago and just figured it was "operator difficulty" as I am far more used to a trackball than a mouse. I may still go back to one if I can't get used to this mouse. I think you really have to put your whole hand over the mouse to make it function properly and I tend not to do that.
    Does this help you with your issue? I am not sure, maybe there is some sort of difference in the way the mighty mouse works with new hardware?
    Good Luck! Wish I had more to offer other than trying carefully to position your handin difernt places and see if that helps.
    Message was edited by: Al Van Malsen

  • Right clicking on open tab yields only 'cut and paste' option.

    My (new) computer has some sort of touch control that randomly changes font size. MSM has a tool icon that restores font size, Firefox doesn't. Right clicking on empty tab yields only the cut and paste option.

    If the zoom level changes on a page, you can reset it to the default using either:
    * Ctrl+0 (that's a zero)
    * View menu > Zoom > Reset
    ''(If you are using the orange Firefox button and compact two-column menu, you can display the classic View menu by tapping either the Alt or F10 keys.)''
    On a conventional mouse, you can zoom text by holding down the Ctrl key and using the scroll wheel (forward=larger, backward=smaller). I'm not sure how your touch device works, but if it changes the zoom level without having to hold down Ctrl or another key, that's not very convenient.
    Now, regarding the empty tab problem, how are you opening the tab? Have you noticed problems with your right-click context menus in other situations?

  • New itune download. unable to right click copy

    new itunes download.
    I'm now unable to right click copy and past album artwork on my itune library.
    Please can you help

    The iTunes 12 Get Info dialog lacks right-click context menus (at least for now) but it still accepts most standard keyboard shortcuts and drag & drop actions.
    Delete Artwork
    On the artwork tab of Get Into, tap the image in question, use Backspace or Ctrl+X. Delete doesn't work.
    Or, tap the image at the top left of Get Info, this time use Backspace or Delete, it is Ctrl+X that doesn't work.
    Add Artwork
    Select artwork, press Ctrl+C to copy, tap the center of the Artwork tab, press Ctrl+V to paste.
    Or, select artwork, press Ctrl+C to copy, tap the small image area at the top left, press Ctrl+V to paste.
    Or, you can drag & drop to, or sometimes from, the same locations.
    You can also copy artwork from the Get Info dialog to Windows Explorer with the keyboard shortcuts.
    If the source image is on a web page right-click and use Copy Image rather than copy. (With Chrome I get a one pixel wraparound so tend to go for a temporary local copy anyway - not sure whose bug this is, but it isn't new.)
    If you have multiple images embedded drag the one you want to be the primary artwork to the leftmost position.
    Replace/Remove All Artwork
    The top left image box can be used to add or delete art from multiple tracks. In either case all existing artwork in all tracks is replaced/removed.
    Old Style Get Info Dialog
    Select some items, right-click, hold down shift, then click Get Info from the context menu. (Use alt/option on a Mac)
    tt2

  • Openscript crashing abruptly while trying to record on Oracle Forms

    Hi ,
    I am having issues with OpenScript tool where it is crashing/closing when I am trying to record some actions on Oracle Forms.It seems like a memory issue but I am not sure how to rectify it or investigate what is the cause.Are there any temp files which needs to be cleared ?Are there any logs which I can check to see what the issue is?I am using a Windows-7 machine and running OATS 9.3.
    Thanks,
    Megha
    Edited by: Megha_Agarwal on 23/08/2012 19:45

    Hello Megha
    You can try the following:
    Go to your shortcut to OpenScript in your Programs menu, and right click on it. Select Properties.
    You will see Popup OpenScript Properties. Ther is Shortcut tab located text box Target. Copy the content of this text box in some notepad file, as a back up, and increase Xmx to 1024 for example
    C:\OracleATS\openScript\OpenScript.exe -configuration openscript_configuration -vm C:\OracleATS\openScript\jre\bin\java.exe -vmargs -Xmx512m -XX:MaxPermSize=256m
    You can try different values.
    Let us know the result
    Cheers
    JB

  • Right-click, drop-down menus in Firefox 15 cause entire Mac OS 10.7.4 system to hang, forcing manual reboot.

    I bought a new MacBook Pro.
    I am running Mac OS 10.7.4 with Firefox 15. Every time I right click or try to use a drop-down menu in Firefox, it causes the entire system to hang, forcing a manual reboot.
    No crash reports are available as the Firefox does not actually crash.
    I have tried
    1.) Starting Firefox in safe mode
    2.) Disabling all the add-ons
    3.) Resetting Firefox
    4.) Removing and re-installing Firefox
    5.) Disabling hardware acceleration
    The problem still occurs.
    This is critical a critical issue as I have been using Firefox's Zotero plugin to write my PhD dissertation which is about 50% complete and now I cannot use Firefox or the Zotero plugin and have about 800 references I do not want to have to manually re-enter!! Also it is preventing me from continuing work on the dissertation as I am unable to insert references, and I have submit this thing by March!!!!

    Ok, further developments. Still can't get Firefox to work; it makes Lion hang and I have to force a reboot. I tried using terminal to open FF's profile manager, delete my old profile and make a new one. Same problem.
    I tried making a new user account in Mac OS, and doing another fresh install of Firefox. It worked! I was able to use drop down menus and right click without crashing the system!
    However, as soon as I installed the Zotero plugin... the same issue started occurring again.
    Dear programmers, please help me. It will literally take me weeks of work to re-do all of my citations using a different software or manually. There must be a way to fix this problem!

  • Right click menus do not appear fully.

    '''''italic text'''''Hello, I'm hoping someone can give me some help with a problem I am having with the "right click menu" not appearing completely, does not matter what site or where on the browser I try to get the menu. It makes it very difficult copy and pasting.
    I am using the 3.6.19 version (Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.19) Gecko/20110707 Firefox/3.6.19). I use this version because it allows me to use the ad-ons that I use every single day like, Roboform and others that at this point will not work with any of the newer browsers.
    This problem started about two/three days ago and I'm not sure why it happened or how to correct it. I have not added any new downloads or anything else for that matter. Is there anyone that can help me fix this little annoyance please?

    Thanks for the response!
    It's via my distribution's repositories. 64-bit. I just downloaded the version from your link above (14.0.1), which turned out to be 32-bit, and there's no change. I don't get any D-Bus errors on load (only some complaints that a 64-bit plugin was the wrong ELF class and couldn't be loaded), but I still can't make any menus appear. I also tried downloading Aurora (16.0a2) with the same result.
    The system requirements should be fine as I have been running Firefox on this machine since I bought it a few years ago, and being quad core with 8GB RAM it should be well above the minimum specs needed.
    I'm thinking it's a bug that has been introduced somewhere along the way. Any ideas how I can troubleshoot?

Maybe you are looking for

  • How do i import music from windows media player to I-tunes?

    can someone please let me know if there is a way to move all of the music i have in Media Player to itunes. Thank you

  • Apple pro res 4444 info?

    COuld someone tell me the data rate for apple pro res 4444 codec? how many megabytes per second does it demand? Will I be able to run it from a 7200 rpm firewire 800 single mobile drive? Thanks!

  • Can anyone explain the different memory amounts on the Tour?

    I know the specs say 256MB built in memory, but I'm curious to know how much of that is reserved for the OS, how much for applications, etc.  When I use MemoryBooster, it shows I have 54833KB memory that the app monitors and clears out periodically.

  • MacPro not seen in XP's "my network places"

    Hi, I have a small business network made of 6 macs (from G3 to MacPro, all with OSX 10.4.9) and 1 PC with XP Pro. All the Macs have Windows sharing enabled with WORKGROUP name. My problem is that I can see every Mac in PC's "my network places/workgro

  • ORA:- 01033: Oracle Initialization oe shutdown in progress.

    Database:- Ver 10.02 OS:- Windows Xp Scenario:- Tried to login with regular user scott,hr even sys with correct password Error:- ORA:- 01033: Oracle Initialization oe shutdown in progress. All your experts input are highly Appreciated. Thanks