EPC-Cross Programme Test

hello experts..
need help regarding cross prog. test in Extended Programme Check..the error which i am getting is:
With the following statement, the database cursor is lost:
          MESSAGE I600 WITH 'Customer managed via customer' KNKK-KNKLI.
kindly help...PJ

Hello Pankaj,
Thank you for posting in MSDN forums.
Since this issue is related to the Extensions tool
Selenium components for Coded UI Cross Browser Testing, so if possible, I suggest you post this issue
here, click “Q AND A”, and then you could post this issue there, you would get dedicated support. Thanks for your understanding.
In addition, I did some search and find a stack overflow with this exception:
Element is no longer attached to the DOM:
http://stackoverflow.com/questions/5709204/random-element-is-no-longer-attached-to-the-dom-staleelementreferenceexception . I am not sure if you have read this link. You can try the solution to check the result. And as they discussed there,
the current Chrome driver is quite unstable, which may cause some issues. Anyway, I suggest that you consult your issue on Selenium components Q&A for better solutions.
Best regards,
Amanda Zhu
MSDN Community Support | Feedback to us
Develop and promote your apps in Windows Store
Please remember to mark the replies as answers if they help and unmark them if they provide no help.

Similar Messages

  • Cross browser testing : Modifier Keys playback actions not working in chrome and Firefox

    Hi,
    In my work flow I have to select multiple items in list.So I have recorded 'Ctrl+Click' action to select list items.In Chrome and Firefox it is not selecting multiple Items.
    Even Ctrl+A,Ctrl+C,Ctrl+V also not working in chrome and Firefox.Complete modifier keys support is not observed in chrome and Firefox.Let me Know how to automate modifier keys actions in cross browser?
    Regards,
    Nagasree.

    Hi Nagasree,
    Welcome to MSDN forums.
    First,please make sure the Chrome and Firefox is supported by cross browser testing.
    Latest version of Chrome and Firefox supported by cross browser testing are Chrome version 38.0.2125.111 and
    Firefox 33.
    I doubt whether Chrome and Firefox in cross browser testing don’t support automating modifier keys or there is anything wrong on it if you are using supported browser. Since this issue is related to the Extensions tool
    Selenium components for Coded UI Cross Browser Testing, if possible, I suggest you post this
    issue here, click “Q AND A”, and then you could post this issue there, you would get dedicated
    support there.
    Thanks for your understanding.
    Best regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Testworkbench (STWB) - Implementation cross-module test cases

    Hi experts,
    we want to use the SAP Solution Manager (SolMan) Testworkbench u2013 STWB u2013 for system testing.
    However, we are faced with the problem to make cross-module test cases in the system. In our test cases are examined by different teams. For example, in a account booking on the modul MM also different teams involved, which are responsible for CO and FI.
    Operationally in the test case is a kind of indicator/flag can be set that each team has already tested and thus immediately apparent which team must consider the test case yet.
    First, i think on a workflow - but I do not know how to implement something in the test case or Tetsworkbench.
    If you have any other or better ideas?
    Thanks a lot!
    Regards,
    Stefan

    Hello Stephan,
    Have you checked these SAP Solman help links?
    http://help.sap.com/saphelp_sm70ehp1_sp23/helpdata/en/48/e151fddb163184e10000000a421937/frameset.htm
    http://help.sap.com/saphelp_sm70ehp1_sp23/helpdata/en/2e/e7769b243b4d0993429c71996f985e/frameset.htm
    Also this blog is pretty good:
    /people/community.user/blog/2006/12/07/organize-and-perform-testing-using-solution-manager
    Hope this helps guide you in your project.
    Regards,
    Paul

  • Cannot install Selenium Components for Cross Browser Testing extension from Visual Studio 2013

    Hello,
    I am having some issues with installing Selenium Components for Cross Browser testing.  I keep getting this error everytime. Yes, Visual Studio 2013 has been registered with a product key. However, I cannot seem to bypass this error. I tried to install
    from http://visualstudiogallery.msdn.microsoft.com/11cfc881-f8c9-4f96-b303-a2780156628d and from Tools->Extensions and Updates from Visual Studio 2013. It just does not work. I have a copy of Visual Studio 2013.  Yes, I already have Visual Studio
    2012 Ultimate and Visual Studio 2013 Ultimate installed on my machine. What am I missing?

    Hi Antwan,
    Please uninstall the VS, then reinstall it.
    On the other hand, this issue is in the extension, I suggest that you should post it in
    Selenium components for Coded UI Cross Browser Testing site for efficient response. (Q AND A)
    Thanks
    Best Regards
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Cross browser testing:Click action on UITestcontrol got using ExcuteScript API is not working.

    Hi,
    For one of the web control,I am using ExecuteScript API to get the UITestControl as explained in this link (http://blogs.msdn.com/b/visualstudioalm/archive/2013/01/18/introducing-jscript-execution-on-internetexplorer-and-crossbrowser-in-coded-ui-test.aspx
    )and trying to perform click action on the control.It is not performing the click action on the control but script status is success.
    Problem is seen only with specific Overload of Mouse.Click().Here I am constructing the control using bounding rectangle dynamically.
    The API I am using is
     Microsoft.VisualStudio.TestTools.UITesting.Mouse.Click(UITestControl, MouseButtons.Left, ModifierKey.None, clickablePoint );
    Point Caluculation is shown below:
    clickablePoint  = return new Point(boundingRect.Width / 5, boundingRect.Height / 4);
    I tried to debug the code and found that Selenium web driver is throwing null reference exception while using this API for Left button click action.Could you please check the problem and fix it.So that I can
    use this API as per my requirement.
    Regards,
    Nagasree.

    Hi Nagasree,
    Latest version of Chrome and Firefox supported by cross browser testing are Chrome version 38.0.2125.111 and
    Firefox 33. So please make sure the Chrome and Firefox is supported by cross browser testing
    Whether this API: Microsoft.VisualStudio.TestTools.UITesting.Mouse.Click(UITestControl, MouseButtons.Left, ModifierKey.None, clickablePoint ) worked fine with IE browser when
    you run this test?
    If the same API worked fine on IE browser but not on Chrome or Firefox browser, “Q AND A” tab in this link:
    Selenium components for Coded UI Cross Browser Testing is a better place for resolving this problem.
    It seems that you want to click the control using bounding rectangle, then you don't neet to use MouseButtons.Left and ModifierKey.None, you can use such API:
    Click(UITestControl, Point) or
    Click(Point) directly.
    You also can try to use the following code snippet, maybe it can help you.
    Rectangle r = TargetControl.BoundingRectangle.
    Mouse.Click(new Point(r.X + r.Width/2, r.Y + r.Height/2));
    Thanks,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Hey, I'm doing some cross browser testing and i want to know Is there any difference between the behavior of Firefox in an operating system 64bit & operating system with 32bit. (like windows7/windows vista...)

    ''duplicate of https://support.mozilla.com/en-US/questions/905881''
    Hey, I'm doing some cross browser testing and i want to know Is there any difference between the behavior of Firefox in an operating system 64bit & operating system with 32bit. (like windows7/windows vista...)

    Hi Kossa,
    You can also check if the issue occurs in
    Clean Boot. If the issue disappears in the Clean Boot environment, you can continue to narrow down which entry is causing the issue.
    Besides, uninstall it and re-download
    a fresh copy of FireFox to check the result. If the issue still exists, create a new user account to see if it occurs.
    If the issue persists, you can contact Mozilla Support directly and use Internet Explorer (IE) during the time.
    J
    Please Note: The third-party product discussed here is manufactured by a company that is independent of Microsoft. We make no warranty, implied or otherwise,
    regarding this product's performance or reliability.
    Regards,
    Linda

  • Hey, I'm doing some cross browser testing and i want to know Is there any difference between the behavior of Firefox in an operating system 64bit & operating system with 32bit. (like windows7/windows vista...) Thanks,

    Hey, I'm doing some cross browser testing and i want to know Is there any difference between the behavior of Firefox in an operating system 64bit & operating system with 32bit. (like windows7/windows vista...) Thanks,

    Hi O_H_I_O,
    Have you got an error code ?
    Considering it is a brand new machine ,please update the machines .To get a better performance of the machines ,we should always keep it up to date .
    There is a possibility that the DVD/CD-ROm drives driver is old or has corrupted .Please open the device manager , update or reinstall the driver to have a check.
    Apart from this ,we can run the built-in tool to a diagnostic :
    Control Panel\All Control Panel Items\Troubleshooting\All Categories\Hardware and Devices
    We also can run the following fixit tool to have a check.
    Fix problems with CD or DVD drives that can’t read or write media
    http://support.microsoft.com/mats/cd_dvd_drive_problems
    Best regards

  • How much studying before taking Sun Cert. Programmer test

    I am trying to switch careers, in College (which was 1 1/2 years ago) I did programming along with physics (computational physics). I worked as an engineer for a year, now I want to get back into programming. I thought a good first step might be to get my certification as a Java Programmer (then maybe J2EE, and then the developer). I was going to study on my own, but I think my schooling did a decent job of putting it in my subconscious. I am lacking some breadth though.
    I was going to study on my own with a book and then mess around with programming while I'm studying, but how long do you think I should give myself before I take the test. I'd like to pass the first time...I have little money to blow.

    hi,
    the java 2 certification guide is, after reading the tutorial, ... a good starting point. covers questions taken from the cert guides.
    try
    http://www.amazon.com/exec/obidos/tg/detail/-/0782140777/qid=1033059702/sr=8-1/ref=sr_8_1/104-3215590-9756764?v=glance&n=507846
    or
    http://www.amazon.com/exec/obidos/tg/detail/-/0072132086/qid=1033059702/sr=8-2/ref=sr_8_2/104-3215590-9756764?v=glance&n=507846

  • How can I remove firefox 5 and revert to firefox 4 for cross browser testing purposes?

    I have inadvertantly had my machine upgrade to Firefox 5 - but I need to go back to Firefox 4 in order to main a full selection of browsers for Testing purposes. How can I go back?

    I have inadvertantly had my machine upgrade to Firefox 5 - but I need to go back to Firefox 4 in order to main a full selection of browsers for Testing purposes. How can I go back?

  • BD Biosciences Seeking a Labview Programmer/Test Engineer

    BD Biosciences located in San Jose, CA is currently seeking a Sr. Test Engineer to join our exciting and growing team. 
    About BD: BD Biosciences, a segment of BD, is one of the world’s leading businesses focused on bringing innovative research and clinical tools to life scientists and clinicians.  Principal product lines include fluorescence activated cell sorters and analyzers; cell imaging systems; monoclonal antibodies and kits; research reagent systems; tools to aid in drug discovery and growing tissue and cells; and diagnostic assays.  Its customers are involved in basic research, the discovery and development of drugs and vaccines, clinical trials, diagnostic testing and disease management. This diverse customer base includes academic and government institutions, pharmaceutical and biotech companies, and clinical laboratories. 
    The successful candidate will have hands on experience in the development of automated test solutions for PCBs and system level testing. The ideal candidate will be proficient in Labview programming. This engineer will be an integral part of the new product design teams and will be responsible for creating test that can deployed into the manufacturing environment.
    The incumbent will be responsible for creating automated custom test fixtures utilizing custom or off the shelf hardware and the Labview software application as well as the testing of fixture development to include PCBs and system level testing for a complex medical analysis instrument.   Responsibilities will also include planning, developing, and supporting introductions, generating and maintaining test plans, test software, and hardware fixtures for both onsite and offsite locations.  The selected individual will provide timely and concise status updates as they pertain to metrics and issue resolution to the technical lead and/or project manager.
    Requirements:  
    Experience with Labview within Windows OS. Labview TestStand a plus.
     Knowledge of advanced hardware test engineering methods such as Boundary Scan a plus.
    Ability to design and document interface test adapters and cabling to connect to UUT.
    Knowledge of software development process and methodology.
    Experience in automating tests for manufacturing environments
    Experience in custom hardware.
    Knowledge of C, C++, or Visual basic a plus.
     5 years experience in Software Development or a related field and a Bachelors degree in Computer Science, Electrical Engineering,  Computer Engineering, orsimilar field
    Interested individuals please send resume to [email protected]:
    Troy Roessler
    Recruiter
    BD Biosciences
    2350 Qume Drive
    San Jose, CA 95131
    (408) 954-2299
    [email protected]
    BD BIOSCIENCES IS AN EQUAL OPPORTUNITY & AFFIRMATIVE ACTION EMPLOYER.

    Eon Nurse
    514-333-1622

  • Recommended way to unit test mobile cross platform C++ in Visual Studio 2015

    Hello,
    I'm playing with the new Visual Studio 2015 to check its capabilities for cross platform development using C++ as coding language. I've seen several videos in Channel9 about this feature but I don't remember hearing in any of these a word about how
    to unit test such projects from Visual Studio 2015. Is there some recommended way to create unit tests for such projects?
    I'm not sure I can use Visual Studio test projects for C++ to test the android library or the Windows Phone 8.1. If I add a new platform ARM to a test project of those, I cannot select in the platform toolset combo the values that I have for my libraries
    (Clang 3.4 and Windows 8.1 respectively). So it seems that such test projects are not addressed for cross platform c++ in VS2015.
    I also have tried to make a second cross platform library project to contain the tests, adding there the Catch.h file from catch framework or adding the files from Google Test framework. My idea was to link each cross platform test library with their corresponding
    "production code" libraries. In both cases (catch and gtest) I have problems when trying to compile the test framework files (not sure if it is not possible or just my fault being new at C++ for mobile platforms).
    Has anyone succeeded unit testing the cross platform c++ code in VS2015? How?
    Thanks in advance,
    Jorge.

    Hi Jorge,
    Thanks you for posting in MSDN forum.
    Based on your issue, since VS2015 Preview is previews for the next major release of Visual Studio, currently we forums don’t provide support for VS2015 Preview. So the product team would accept the suggestions or feedbacks for the VS2015 now.
    So you can submit the feedback/suggestions to Microsoft Connect feedback portal:
    http://connect.microsoft.com/VisualStudio/feedback/CreateFeedback.aspx, Microsoft engineers will evaluate them seriously. Thanks for your understanding.
    After you submit the feedback, you can post the link here which will be beneficial for other members with the similar issue. And I will help you to vote it.
    Thank you for your understanding.
    Best Regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Organizing cross-component eCATT tests in the Test Catalog

    My question is regarding how to properly structure the test catalog.  I have an eCATT test that uses REF to call three other eCATT tests.  These three tests are simulating a businses process (order to cash) and they are Creating a Sales Order (VA01), Creating a Delivery (VL01N) and Creating the Billing Document (VF01).  Since test catalogs are placed in the application hierarchy I created three separate test catalogs, one for each test.  The catalog with VA01 is in component SD-SLS-SO while the catalog with VL01N is in LE-SHP and VF01 is in SD-BIL.  Now I have the fourth eCATT script -- the chain script that uses REF to call those other three scripts.  Since this script doesn't belong to any one specific module or component I can't create a test catalog for it in the application hierarchy.  I also realized that if I created a test plan from the three test catalogs with VA01, VL01N and VF01 I wouldn't be able to execute them individually because the scripts share Import and Export variables.  What is the Best Practice for creating and storing multi-transactional, cross-component tests that simulate business processes?
    Secondarily, is there a forum dedicated to eCATT, TestWorkbench or SAP automated testing?  If not, which forum would be the best place to post these testing related questions?

    Ben,
    there are effectively two approaches:
    1. Find the "lowest common denominator" - if you have a master script that calls scripts from various sub-components of SD, place the master script in SD (top level)
    2. Try to establish the "lead activity" in your master script - ask yourself the question "How would I describe this test case in one sentence?". Then try to classify the master script according to that.
    Both approaches have advantages and disadvantages.
    There is, of course, a third possibility. If you have real baseline tests that test business processes that run right through everything, you could put the catalog at "SAP" level in the application hierarchy.
    Feel free to keep posting your testing questions here!
    Regards
    Jon.

  • Unit testing, integration and functional testing

    Hello all,
    I would like to know the difference between Unit testing, integration and functional testing. And also what are the testing tools that are more commonly used?
    Thanks,
    Maxx

    Hi,
        Unit testing :
                    A complete cycle of each  module will be tested
                    ie for PP Right from requirements to planned orders /production orders
                    confirmation .
        Integration testing:
                    Here cross module testing will be carried out.
                     ie PP and MM integration
                        After confirming production order a GR is made /billing is carried out
                        and delivered.
          Functional testing:
                    This testing is carried out to see whether the system can with stand l the loads during processing by users.
                    Stress test and volume test.
                Regards,
                nandha

  • How can i count no.of links on a web page using VBA programmability

    hi,
    could anybody help me in getting the no.of links,no.of images in e-tester using custom programmability test.
    i'm new to e-tester.
    earlier i was using QTP. i know VBScript and how to getitemscount in QTP

    Hi pasumarthi,
    Great question! Try putting the following code in the Private Sub RSWVBAPage_afterPlay(). If you run into problems, please reply to this message. This code can also be copied into a custom vba test if you wanted to test the number of links and images on the page against a specific number.
    'Variable declarations
    Dim images As Collection
    Dim links As Collection
    Dim resultbImages As Boolean
    Dim resultbLinks As Boolean
    Dim item As Object
    'Initialize variables
    resultbImages = False
    resultbLinks = False
    'Get all the elements that have a tag of IMG
    resultbImages = RSWApp.om.FindElements(images, , "IMG")
    'Get all the elements that have a tag of A
    resultbLinks = RSWApp.om.FindElements(links, , "A")
    Call RSWApp.WriteToLog(, , "There are " & images.count & " images on the page")
    Call RSWApp.WriteToLog(, , "There are " & links.count & " links on the page")
    Message was edited by: kgehrke

  • Proper way to test the dual GPU cards?

    I'll be receiving my Mac Pro tomorrow and I wanted to know if there is a way to properly put both GPU's through their paces to make sure they are both functioning properly? I've found a few threads where people realize their second GPU ( not used most of the time ) was in fact defective. Is there something on OS X that will test this? I plan to go to bootcamp and do some usual cross-fire tests, but something on the OS X side might be useful.
    TIA
    -Andres

    Sorry to have to tell you this guys but all of the above are broken.
    First of all... you should all take a good look at what the read() method actually does.
    http://java.sun.com/j2se/1.3/docs/api/java/io/InputStream.html#read(byte[], int, int)
    Pay special attension to this paragraph:
    Reads up to len[i] bytes of data from the input stream into an array of bytes. An attempt is made to read as many as len[i] bytes, but a smaller number may be read, possibly zero. The number of bytes actually read is returned as an integer.
    In other words... when you use read() and you request say 1024 bytes, you are not guaranteed to get that many bytes. You may get less. You may even get none at all.
    Supposing you want to read length bytes from a stream into a byte array, here is how you do it.int bytesRead = 0;
    int readLast = 0;
    byte[] array = new byte[length];
    while(readLast != -1 && bytesRead < length){
      readLast = inputStream.read(array, bytesRead, length - bytesRead);
      if(readLast != -1){
        bytesRead += readLast;
    }And then the matter of write()...
    http://java.sun.com/j2se/1.3/docs/api/java/io/OutputStream.html#write(byte[])
    write(byte[] b) will always attempt to write b.length bytes, no matter how many bytes you actually filled it with. All you C/C++ converts... forget all about null terminated arrays. That doesn't exist here. Even if you only read 2 bytes into a 1024 byte array, write() will output 1024 bytes if you pass that array to it.
    You need to keep track of how many bytes you actually filled the array with and if that number is less than the size of the array you'll need pass this as an argument.
    I'll make another post about this... once and for all.
    /Michael

Maybe you are looking for

  • Mail Marked with Quick Flags (follow up) in Outlook, Tasks - TO-DO LIST - Not SYNCING

    This question goes for Outlook 2003 and Outlook 2007 I'm currnetly using outlook 2007 In Outlook I store mail marked with "quick flags" (follow-up). Outlook shows theses flagged emails under Tasks \ To-Do List. To-Do list is under TASKS in outlook, b

  • Problem with a Link calling a dynamic page

    Hi! I wanted to create a link calling to a dynamic page. This dynamic page displays a PDF depending on the parameter, the thing here is that I don't know how to set the bind variables or more likely how to say that the value of those variables is goi

  • Jms settings and correlation settings in jms adapter

    hi expects,    what is use of jms settings and correlation settings in jms adapter.

  • Re install Adobe Flash 10.3 ?

    Could someone tell me how to get Adobe Flash 10.3 back working? I did something wrong, trying to remove it for the 11.3 version for this program I've been using. I did not remove it by Uninstaller, this keeps aborting and reinstalling 10.3 keeps fail

  • Editing & Organizing in iPhoto 6

    I have been unable to create a custom film roll. I followed advice in the forum to krenkelt on May 11, 2008 by smtr but it has not worked for me. In File, when I click on create film roll nothing happens.