Running OpenScript tests in OTM does not work

Hi,
I added an OpenScript functional script (for Siebel) in OTM, and when I click on "Run this test", and I see no action. In the Run History, OTM shows in the "Results" column that the test is "Running", although more than hour has passed since starting the test run.
Are there any settings/configurations I should do to get this to work?
Another questions, could I use OTM to run a group of OpenScript functional scripts as batch testing? If not, how could I run batch OpenScript testing?
Thanks,
Shadi

Hi again,
I have solved the issue of openscript tests running with OTM. I opened the System manager from OTM (Tools-> Systems) and enterd my Windows account password and clicked "Test", then went back and ran my openscript test and it satarted to work. I wonder why this was not mentioned in any of the documentation files.
I also face the common issue that OTM ignores the think() statement, and don't know how efficient using the delay() statement is and if it actually works.
ISSUE1 Is there a way to force OTM to perform the think() statement? It would be great if we have it as an option.
Regarding batch testing, I created a Schedule Task in OTM, and selected some tests to run as a batch, and it worked. The issue I have here is when I want to clone the Task I ran previously by clicking on the "Clone", it does not include the list of tests I selected in the cloned Task.
ISSUE2 For example, if I have ceated a Task and added 10 tests to it, and later after it was run I want to clone it in order to run it again, the 10 tests are not inculded and I will have to select them manually.
ISSUE3 Is this the only way to run batch testing for openscript (using Task)?
I will try to find a work around for this issue, but hope you guys could help.
Thanks,
Shadi

Similar Messages

  • Running a OpenScript test from OTM is not lauching the browser

    I'm trying to launch OpenScript test from OTM but it's not launching the browser. All it does in background, unable to see whats happening when running the test.
    Can anyone let me know what setting I need to correct in OTM to make the browser visible while running the test.

    Hi,
    Stop the OATS Agent service.  Open a command prompt and run the agent as a console app using the following command:
    C:\OracleATS\agentmanager\bin\AgentManagerService.exe -c C:\OracleATS\agentmanager\bin\\AgentManagerService.conf
    Then execute your test from OTM and you should see the browser and script execution,
    Regards,
    Jamie
    http://www.scl.com

  • Running OpenScript tests in OTM

    Hi,
    I added an OpenScript forms functional script in OTM, and when I click on "Run this test", and I see no action. In the Run History, OTM shows in the "Results" column that the test is "Running", although more than hour has passed since starting the test run.
    I've tried : System manager from OTM (Tools-> Systems) and enterd my Windows account password, but
    it still doesn't work.
    Can somebody advise a solution?
    Lea

    Ok, Lea. Try running the agent service as a console app instead:
    OATS Application service - run as a user with local admin rights
    helper service - local system
    OATS agent service - set to manual
    Then, run the agent service as a console app -
    1. run a cmd prompt
    2. run c:\> C:\OracleATS\agentmanager\bin\AgentManagerService.exe -c C:\OracleATS\agentmanager\bin
    AgentManagerService.conf
    3. Execute the script from OTM
    What version of OTM are you running?
    Cheers,
    Jamie

  • System.load("/opt/test/libcoder.so") does not work!

    hello!
    I have a problem with JNI.
    I have a shared object, libcoder.so, that i store in /opt/test/
    The code runs in a UNIX enviroment.
    the code that loads the lib looks like this:
    static{
    System.load("/opt/test/libcoder.so");
    I get this exception when I run the program:
    java.lang.UnsatisfiedLinkError
    My program runs in a different directory, /opt/dev/test/
    Does that matter??
    If one makes a truss, simular to snoop, one can se that the program finds the lib file but an exception is thrown.
    If one runns the program under the same directory everythings works ok.
    I have set the LD_LIBRARY_PATH and the PATH to point out /opt/dev/test/
    Do anyone have any suggestions on how to solve this problem?

    Are you sure .so must be there in the file name? Try without it.

  • Web Service Test in SE80 does not work with internal Table

    Hello,
    I have created a web server based on a function module. It works fine when the server is invoked from outside (.Net or SOAPUI).
    However, when I test it in SE80, (open the Server and then F8), it shows error message:
         Access to the table ref. node 'Y02VSI_CAE_CONDITIONITEM' outside a loop
    (Germany Zugriff auf den Tabellen-Ref-Node 'Y02VSI_CAE_CONDITIONITEM' außerhalb einer Schleife )
    The test xml is generated from SAP, I just fill the data as following:
    This XML is absolute correct. Why item ('Y02VSI_CAE_CONDITIONITEM) is outside a loop?
    Is it a bug from SAP?
    Thanks in advance!
    Regards
    Dianlong

    Hi Dianlong,
    Please check if SAP note 1132501 is relevant for your ECC release. If you apply the note, you may have to re-generate the web service from the function module.
    Regards, Trevor

  • I'm running OS X Yosemite 10.10.2 - when I run the creative cloud installer does not work

    I can download and run the installer, but it gets to the end and then just closes and nothing happens.
    Is there a way to fix this so that I can install & run CC on my computer?

    Gemmas79157085  have you utilized the steps listed in Error "Failed to Install" Creative Cloud Desktop application to reinstall the Creative Cloud Desktop application?

  • Update on MS Access DB does not work

    Hi everybody!
    Any ideas, why this UPDATE Statement does not work?
    Statement s = con.createStatement();
                   //Update Statement
                   String updateString = "UPDATE Attends " +
                                                                          "SET Date = '12.05.2004' " +
                                                                          "WHERE LVA LIKE 'NET4'";
                   s.executeUpdate(updateString);
                   s.close();
    The Table Attends consists out of 3 columns, MatNr --> Type: Text, LVA --> Type: Text and Date--> Type: Date (also tested as Text, does not work either)
    The column Date is empty, updates on the column matNr and LVA work perfect, but why not on Date?
    I always get an Java.SQL.Error -> Syntax Error...
    Thx in Advance!
    Stef

    Having a column named Date is a terrible idea. It's a keyword in every database. Change that to something more meaningful for your problem. I'll assume you'll call it AttendanceDate.
    Use PreparedStatement - it'll escape that Date properly for you:
    String attendanceDateAsStr = "12.05.2004";
    DateFormat format = new SimpleDateFormat("MM.dd.yyyy");
    java.util.Date attendanceDate = format.parse(attendanceDateAsStr);
    String updateString = "UPDATE Attends SET Date = ? WHERE LVA LIKE ?";
    PreparedStatement s = con.prepareStatement(updateString);
    s.setDate(1, new java.sql.Date(attendanceDate.getTime()));
    s.setString(2, "NET");
    int numRowsUpdated = s.executeUpdate(updateString);
    s.close(); %

  • TS1381 My left arrow does not work on my macbook pro(model A1226).  I have reset nvram, performed a safe boot, pulled the cache to desktop, replaced .globalpreference.plist, test all other keys with keyboard view (all others work)  - HELP!!

    My left arrow does not work on my macbook pro(model A1226).
    I have reset nvram, performed a safe boot, pulled the cache to desktop, replaced .globalpreference.plist, & tested all other keys with "keyboard viewer" (all other keys work except for the arrow). 
    In addition, I have gone thru all the recommended checks with universal access and have booted from snow leopard dvd and the left arrow still does not work. 
    I have tried using the left arrow key in all of applications I use such as: excel, ms word, address book, calendar, iphoto, terminal, & highlighting an icon and using the arrows to move to another selected icon.
    Here is the kicker!  In addition, I purchased a logitech solar bluetooth keyboard and the arrows work fine with my ipad but do not work when paired with the macbook pro. All other keys work fine on the macbook pro using the bluetooth keyboard.
    I believe this says that the problem is not in my macbook pro keyboard. So where can it be?
    Can anyone think of any other rabbit holes I can search?
    thanks and regards
    vats3

    I would also like to add that I've reverted the two cd drive and hard drive mods I did and the laptop is back to factory hardware and there is 0 corrosion or mold visible.

  • I was running KeyPassFox with Firefox 8.0.1, but the plugin does not work in the new release (9) . Is there a way to restore my previous version with all of my bookmarks intact? I do not mind if I have to restore the plugins myself.

    I was running KeyPassFox with Firefox 8.0.1, but the plugin does not work in the new release (9) . Is there a way to restore my previous version with all of my bookmarks intact? I do not mind if I have to restore the plugins myself.
    The plugin shows on the list as enabled and functioning, yet the tool does not show on the toolbar. It would appear that I need to restore the previous version of Firefox and wait until a newer release of the plugin is available before upgrading the browser.

    I copied the iTunes file from the external drive and it's in both places.  I thought all I would need is the iTunes program (which I downloaded to new computer) and my iTunes library file.  There must be something else that's missing.  My iTunes library looks the same on the new computer as it does when I open it on the external drive.  If I click on an iTunes library song from my new computer, it will only play if I have the external drive plugged in.
    My back-up drive is a mess.  I have multiple copies of music, video, photo, and document files and I don't know how that happened. ={  Obviously, I don't know how to back up stuff properly and there are back-up files extending over a 6- to 8-year period.  I think all I did was just drag and drop the main folders from the back-up drive to the same main folders on the C: drive.  Also (and I'm kind of fuzzy on this) Windows used to automatically save music files in a folder within my document files (which makes no sense to me).  As my Jewish friends would say, "Oy Vey!" 

  • HT4235 iPod nano 6th generation, syncing with audiobooks does not work now, had been working.  Sync test says:  No iPod touch, iPhone, or iPad found.  Connectivity test OK, no physical problems, iTunes shows the iPod.  Any clues what to do?

    iPod nano 6th generation, syncing with audiobooks does not work now, had been working.  Sync test says:  No iPod touch, iPhone, or iPad found.  Connectivity test OK, no physical problems, iTunes shows the iPod.  Any clues what to do?

    Hmm.. Thank you for the response.
    Have you tried using the iPod with another user account or computer, to help narrow down whether the problem lies with the computer, account, or the iPod itself?
    Maybe try reformatting it, using the tools provided by Windows. Instructions on how to reformat your iPod can be found in this article.
    http://www.methodshop.com/gadgets/ipodsupport/erase/index.shtml
    B-rock

  • I am able to login to the Web, but when attempt to run the installer, it ask for a password and it does not work the password I used to login in the web.

    I am new to Adobe Cloud, received the invitation from Adobe, create my account and I am able to login to the web. When Attempted to download Photoshop desktop, I was asked for Name and Password, the name was populated but I have to enter the password. I am using the password I entered at registration but it does not work and the Installer does not run.
    I have a MacBook Pro with OS version 10.9.3.
    Thanks,
    Carlos

    I figured out, the Installer need the username and password for the computer OS.

  • I am using Windows 7 64-bit. After installing Photoshop Elements 13 and trying to run it I always get the message: Photoshop does not work anymore. And it doesn't.

    I am using Windows 7 64-bit. After installing Photoshop Elements 13 and trying to run it I always get the message: Photoshop does not work anymore. And it doesn't.

    Hi Hardy Tasso,
    Are you seeing this problem since first launch of PSE13 after installation or recently?
    Please try:
    Keep Ctrl + Alt + Shift keys pressed while launching PSE13 Editor and click OK on the dialog that comes next.
    Thanks,
    Anwesha

  • I want to run a streaming quotes program on Scottrade. They tell me that their product does not work if I have more than one Java application on my Mac. How do I delete the older versions? Thanks

    I want to run a streaming quotes program on Scottrade. They tell me that their product does not work if I have more than one Java application on my Mac. How do I delete the older versions? Thanks

    I have the same problem, they never told me that, just that the newest version of Java "locks" up streaming quotes.

  • My iphone 6plus not working not charge but when i run it the first time working half an hour  when you attempt to run it again light up thr screen and showws the apple logo and after the pice screen illuminates red and does not work what do i do now

    My iphone 6plus not working not charge but when i run it the first time working half an hour  when you attempt to run it again light up thr screen and showws the apple logo and after the pice screen illuminates red and does not work what do i do now

    Hello Nadersalah,
    It seems you're experiencing multiple issue with your iPhone. Based on the information you have provided, it appears your iPhone needs to be serviced. The following link should help you get started with the process and has links with additional information on topics such as warranty and service pricing, battery replacement, and express replacement service.
    iPhone Repair and Service - Apple Support
    Thank you for contributing to Apple Support Communities.
    Cheers,
    Bobby_D

  • When I am on a Youtube video that is running and I want to switch to another tab, the Ctrl+ tab number does not work, is that intended functionality?

    When I am on a Youtube video that is running and I want to switch to another tab, the Ctrl+<tab number> does not work, is that intended functionality?

    This can happen when the video player (Flash plugin) has the focus.
    In that case the plugin consumes all the key presses.
    You will have to click with the mouse elsewhere on the page or in the user interface to make keyboard shortcuts work.

Maybe you are looking for

  • Data recovery from a dropped ibook

    Hi, I dropped my ibook breaking the screen and the keyboard. Hopefully covered by insurance, and it was recently backed up, but I wanted to see if I could recover any remaining data from the hard drive. The ibook chimes when switched on so I thought

  • Problem with corrupt data.

    Hi. Somehow I accidentally rest my iPod nano (2gig) and all the songs on my iPod at the time became corrupted and useless, as a result all the corrupted data remains on my iPod and I can only fit a small amount of songs on it. I tried updating my iPo

  • Debug WebDynpro Component in NWDS?

    Pro's I need some help here... Does anybody know how to debug a webdynpro component from NWDS? Thanks, Johannes

  • How to restore photos that were deleted in aperture

    Can anyone tell me how to restore photos that were deleted in aperture?

  • Problem importing with Panasonic GS-120

    I am using a 17" iMac G5 along with a Panasonic GS-120 and up until yesterday, I have not had any problems. Now, iMovie or any of the other apps (Yahoo IM, iChat, Delicious Library) that were able to use the camcorder no longer function. When I go in