Inflectra Customer Forums: Rapise Issues & QuestionsGeneral discussions surrounding the use of Rapise. This is appropriate forum for posting questions and issues to the user community.en-US(C) Copyright 2006-2024 Inflectra Corporation.support@inflectra.com/Computers/Software/Project_Management//Computers/Software/Quality_Assurance/KronoDesksupport@inflectra.comhttp://www.inflectra.com/kronodesk/forums120/Support/Forum/rapise/issues-questions/List.aspxthreadId=178David J (support1@inflectra.com)Organizing Test SuitesHello, Does Rapise have any feature that can help me organize my automated tests? Thanks Tue, 18 Oct 2011 14:05:39 -04002011-10-18T14:06:21-04:00/Support/Forum/rapise/issues-questions/178.aspxthreadId=179David J (support1@inflectra.com)Launching an application from a testHow to launch my application from a test?Tue, 18 Oct 2011 14:07:32 -04002011-10-18T14:08:58-04:00/Support/Forum/rapise/issues-questions/179.aspxthreadId=180David J (support1@inflectra.com)How to sleep in a testHow to do Sleep in a test? Tue, 18 Oct 2011 14:09:37 -04002011-10-18T14:10:29-04:00/Support/Forum/rapise/issues-questions/180.aspxthreadId=181David J (support1@inflectra.com)Handling page load delaysI have noticed that some of my tests failed b/c of the time it took for some pages to load. The recording is fine, but I am getting "TypeError(-2146827850): Object doesn't support this property or method" when I play the script. Any adivice on how to handle this? Tue, 18 Oct 2011 14:11:27 -04002011-10-18T14:11:55-04:00/Support/Forum/rapise/issues-questions/181.aspxthreadId=182David J (support1@inflectra.com)Scheduling and executing a scriptHello, Can you please advise if it I can create a script and schedule it to run every 5 or 10 mns? Thanks Tue, 18 Oct 2011 14:17:34 -04002011-10-18T14:18:24-04:00/Support/Forum/rapise/issues-questions/182.aspxthreadId=183David J (support1@inflectra.com)What browsers are supported by Rapise?What browsers are supported by Rapise?Tue, 18 Oct 2011 14:19:40 -04002011-10-18T14:20:21-04:00/Support/Forum/rapise/issues-questions/183.aspxthreadId=184David J (support1@inflectra.com)JScript, JScript.NET or JavaScriptWhich variation of ECMA Script that youGÇÖre using? IGÇÖm wondering if I have access to the .NET frameworkGǪ Tue, 18 Oct 2011 14:21:08 -04002011-10-18T14:21:39-04:00/Support/Forum/rapise/issues-questions/184.aspxthreadId=188David J (support1@inflectra.com)Get Automation Error when using Recorder on Windows 7 When clicking the Record button on my installation of Rapise, I get the following error message: "Microsoft JScript runtime error: Automation server can't create object" This is happening on Windows 7. Tue, 25 Oct 2011 02:44:51 -04002011-10-25T20:21:22-04:00/Support/Forum/rapise/issues-questions/188.aspxthreadId=220System Administrator (webmaster@inflectra.com)Rapise v1.3 not recording Firefox 8.0 Script Some users have reported that Rapise v1.3 is not able to record a script correctly in Firefox even with the latest version of MozRepl installed. If this happens, please locate the following file: C:\Program Files\Inflectra\Rapise\Engine\Lib\LibFirefox\LibFirefoxEmbed.js and comment out the lines that have the token gBrowserLoadListener listed and then restart both Rapise and Firefox. We shall be updating the v1.3 installer for Rapise to include this fix. Mon, 19 Dec 2011 15:51:00 -05002012-06-29T20:36:23-04:00/Support/Forum/rapise/issues-questions/220.aspxthreadId=248David J (support1@inflectra.com)Sometimes clicks don't fire on HTML tests Sometimes when you use the DoClick () event on an HTML button, the click event doesn't fire. In that case, you may need to use the following: SeS("btn").DoClick(3,3, true ); This will force "onClick" event for the found button without doing actual click. Mon, 27 Feb 2012 20:35:45 -05002012-06-30T21:17:29-04:00/Support/Forum/rapise/issues-questions/248.aspxthreadId=255David J (support1@inflectra.com)What functions are supported by the Navigator object when testing HTML? /** * Returns HTMLObject wrapping DOM element for a given 'xpath'. HTMLObject is a * {SeSObject} constructed by matching one of browser rules: {@link IEHTMLObject}, {@link MozillaHTMLObject}, etc. * @param xpath location path of a DOM element. * @param [url] URL. If new navigator is launched, the URL is used. * @param title * @param objInfo * @returns HTMLObject wrapping DOM element for a given 'xpath', 'null' if 'xpath' is invalid. */ Navigator.Find = function(/**String*/ xpath, /**String*/ url, /**String*/ title, /**SeSObjectInfo*/objInfo) /**SeSObject*/ /** * Executes given JavaScript statement in a browser and returns results. * @param scriptText JavaScript code. * @returns */ Navigator.ExecJS = function(/**String*/ scriptText) /** * Opens a browser. If URL is specified, goes to URL. * @param url start URL for opening browser. Can be 'null'. */ Navigator.Open = function(/**String*/ url) /** * Closes browser. Finishes session. * @param url */ Navigator.Close = function(url) /** * Redirects browser to a specified URL. * @param url URL to navigate. */ Navigator.Navigate = function(/**String*/ url) /** * Waits until browser alert with a given text. Wait timeout is 10 seconds. * @param msg alert text. Can be exact text or regular expression, * see 'exp' parameter of {@link checkCompare} function for more details. * @returns 'true' if browser alert had occurred, 'false' otherwise. */ Navigator.DoCheckAlert = function(msg) /**Boolean*/ /** * Waits until browser confirmation with a given text. Wait timeout is 10 seconds. * @param msg confirmation text. Can be exact text or regular expression, * see 'exp' parameter of {@link checkCompare} function for more details. * @returns 'true' if browser confirmation popup is shown, 'false' otherwise. */ Navigator.DoCheckConfirmation = function(msg, result) /**Boolean*/ /** * Set text to return as a result of next browser 'prompt' request */ Navigator.DoSetExpectedPromptResult = function(expectedRes) /** * Set boolean value to return as a result of next browser 'confirm' request */ Navigator.DoSetExpectedConfirmResult = function(expectedRes) /** * Waits until browser prompt with a given text. Wait timeout is 10 seconds. * @param msg prompt text. Can be exact text or regular expression, * see 'exp' parameter of {@link checkCompare} function for more details. * @returns 'true' if browser prompt popup is shown, 'false' otherwise. */ Navigator.DoCheckPrompt = function(msg, result) /**Boolean*/ Tue, 13 Mar 2012 17:16:46 -04002012-03-13T17:17:07-04:00/Support/Forum/rapise/issues-questions/255.aspxthreadId=259David J (support1@inflectra.com)Sometimes when testing IE using Rapise we get a slow script warning Sometimes when running a test script on older versions of IE you will see the error message: "A script on this page is causing Internet Explorer to run slowly". Tue, 20 Mar 2012 14:03:04 -04002012-03-20T14:04:26-04:00/Support/Forum/rapise/issues-questions/259.aspxthreadId=193David J (support1@inflectra.com)Please support left-handed users Hello Inflectra, I am a left-handed mouse user. This gives me problems when recording and playing back a script. When the program is in record mode, it tends to treat both buttons as a left-hand click, preventing any mouse navigation. Upon replaying the script, any click commands are replaced with left-hand context clicks instead. Please help. Roames Thu, 03 Nov 2011 02:21:36 -04002012-01-27T21:39:05-05:00/Support/Forum/rapise/issues-questions/193.aspxthreadId=194David J (support1@inflectra.com)No Samples Directory? Hello Inflectra, In evaluating a test solution for my company, I have recently downloaded Rapise and am working though the User Manual. The user manual refers to a Sample Directory that just isn't present. Can you please advise as I've searched my PC to see if it's elsewhere and it is not. Thanks, Roames Thu, 03 Nov 2011 04:07:51 -04002011-11-03T12:31:45-04:00/Support/Forum/rapise/issues-questions/194.aspxthreadId=195David J (support1@inflectra.com)Support for .NET 4? Hi Inflectra, Your documentation mentions support for .NET 1.1 and .NET 2. Can you please confirm if you support .NET 4 or at least 3.5? If this is in the planning stage, can you please advise when? Thanks again, Roames Fri, 04 Nov 2011 00:38:46 -04002011-11-04T01:31:05-04:00/Support/Forum/rapise/issues-questions/195.aspxthreadId=198David J (support1@inflectra.com)Support for QT?Hi Inflectra, We are heavily into trialling the Rapise tool but a lot of our in-house and 3rd party applications are written using the QT framework. We are having terrible trouble recognising any objects in our applications. We have tried all the methods listed in the documentation in addition to no method - and forcing Rapise to learn the object. We are having no success. Additionally, even the relative analogue record method doesn't work. Can you please confirm support for QT or add some insight into the issue? Thanks again, Roames Thu, 10 Nov 2011 07:11:16 -05002012-01-27T21:38:34-05:00/Support/Forum/rapise/issues-questions/198.aspxthreadId=386David J (support1@inflectra.com)OCR is Null or not an object Hi there! I'm trying to set up a script which simply checks between two coordinates and returns the text displayed in that area. The application I'm running against does not use standard Windows objects, so the only way to get values on the screen will be by OCR. However, when I try to run one of the OCR commands, I get the message "'Ocr' is null or not an object." The command I am running that leads to this error is: SeS('KV2_Sim_Host_code_vi').Ocr.DoExtractFromScreen(39, 239, 114, 269); My first thought is that I need to include the OCR library somewhere... is that with Ocr.DoSelectOcrEngine()? After including that in the main test.js file, I was still getting the same issue. Thu, 04 Oct 2012 15:07:00 -04002012-10-17T17:30:26-04:00/Support/Forum/rapise/issues-questions/386.aspxthreadId=388David J (support1@inflectra.com)Image comparisons in windows with no "sub-objects" We're using LabView for a lot of our major development. Unfortunately, that tends to result in only one object that Rapise can easily identify... the window itself. I tried OCR with Tesseract, but that engine doesn't seem to be able to glean much from the screen, so I'm moving to option 2: image capture and compare. From what I understand, though, when taking images to compare on unrecognized objects, Rapise will take an image of the object below the pointer when an action is taken. That would mean taking an image of the entire window, since it is the only visible object. So if I were looking for a particular button to match a pattern I define, I have to compare the entire window(?) Does that make sense the way I described it? What I'd like to do is compare a defined area in the recording to the same area in playback, without having separate, visible "objects". Perform action, take a copy of (39, 239, 114, 269) and compare to the recorded image of that same area. If it's the same, then A. Else B. Thanks! Fri, 05 Oct 2012 20:02:02 -04002012-10-17T17:31:36-04:00/Support/Forum/rapise/issues-questions/388.aspxthreadId=464Yves M Gagnon (yves.michael.gagnon@gmail.com)"MozRepl not installed" error on Firefox Interaction Hi there, I've just started using a demo of Rapise for evaluation, and am getting this error whenever I launch FireFox: "'MozRepl' Package not installed or not running. It is required for record/playback in Firefox browser. Press Ok to see Installation guide." I am using Firefox 17.0.1, and the installed version of MozRepl (acquired from the Inflectra site) is 42.0.0. I also tried getting a different version of MozRepl, in case that was the issue. There was a post about this issue in Rapise 1.3, but appeared to have been fixed in 1.3.1? Any ideas? Thanks! Mon, 07 Jan 2013 16:54:50 -05002013-02-06T18:07:17-05:00/Support/Forum/rapise/issues-questions/464.aspxthreadId=542David J (support1@inflectra.com)Black screen on Chrome (25.0.1364.172 m) Record I recently updated to Rapise 1.6, and when I try to record from a Chrome instance, that entire screen turns black and Chrome becomes unresponsive. This occurs as soon as I select the address bar. I am using RapiseChromeExtension 1.6.0 which was included with the Rapise installation, and Chrome is updated to the current release. Could this be a matter of having Chrome more up to date than the Chrome extension? Thanks! Mon, 18 Mar 2013 15:43:29 -04002013-03-19T15:26:24-04:00/Support/Forum/rapise/issues-questions/542.aspxthreadId=247David J (support1@inflectra.com)creating a Word documentI am trying to create a new Word document and type a few sentences, but I keep gettinga Syntax Error pointing to my .js file. Has anyone else had this issue before?Mon, 27 Feb 2012 20:07:22 -05002012-02-29T14:53:03-05:00/Support/Forum/rapise/issues-questions/247.aspxthreadId=268David J (support1@inflectra.com)Cannot playback Rapise tests Hi, I have installed trial version of Rapise spira test, and my expiration date is 2012-04-28, when i started to play the tests whcih were created last week, the tests were unable to run. Reports file are gemerated without running the tests, please advise. Tue, 17 Apr 2012 07:58:01 -04002012-04-23T14:51:49-04:00/Support/Forum/rapise/issues-questions/268.aspxthreadId=271David J (support1@inflectra.com)Corrupt license file (.cdm) Get the corrupt license file (.cdm). Uninstalled and reinstalling Rapise did not work for me. pls advise Wed, 18 Apr 2012 10:49:25 -04002012-07-27T19:15:42-04:00/Support/Forum/rapise/issues-questions/271.aspxthreadId=272David J (support1@inflectra.com)Player.js not running properly C:\Program Files\Inflectra\Rapise\Engine\Player.js(258, 1) WScript.CreateObject: Could not connect object. When i play back the tests that were designed last week, get the above error. i am using rapise version, 1.4.31.14 version pls advise. Thu, 19 Apr 2012 07:56:33 -04002014-04-26T01:51:02-04:00/Support/Forum/rapise/issues-questions/272.aspxthreadId=322David J (support1@inflectra.com)Rapise support / capabilities for Agile projects Dear Team, Our QA team is in the process of evaluationg Rapise for usage in project. Can any one please share your experience / capabilities of Rapise for agile based automation projects. Thanks in advance. Tue, 31 Jul 2012 09:37:35 -04002012-08-03T19:16:02-04:00/Support/Forum/rapise/issues-questions/322.aspxthreadId=327David J (support1@inflectra.com)Rapise support for dynamic objects Hi This is regarding the Rapise support for handling dynamic objects inthe application. Supposing the objects are within web tables / dynamic based on the options selected one section and the other section displays items, etc. Also, any specific areas you could Thu, 02 Aug 2012 12:29:29 -04002012-08-02T14:02:18-04:00/Support/Forum/rapise/issues-questions/327.aspxthreadId=385David J (support1@inflectra.com)Debugging in RapiseHave the Rapise v1.5 User Guide and tried to use the debugger in the tool but does not get it working. How do I get the Internal Debugger to work? I have installed Microsoft Script Debugger ,how do I use it in Rapise? After a set breakpoint, how do I continue to run the script? How can I see a set value of a variable? Thanks! Br Jenny Davidsson Thu, 04 Oct 2012 09:18:45 -04002012-10-17T17:32:28-04:00/Support/Forum/rapise/issues-questions/385.aspxthreadId=389David J (support1@inflectra.com)Force stop of execution? How can I force stop of execution of an ongoing test which hangs without restarting rapise? Mon, 08 Oct 2012 09:33:15 -04002012-10-10T15:30:22-04:00/Support/Forum/rapise/issues-questions/389.aspxthreadId=393David J (support1@inflectra.com)Open IE browser with fixed width? Is it possible to open a browser in a fixed width? Such as Navigator.Open('https://www.anywebadress.com'); and some prefix? In Internet Explorer view->zoom I can set different %. Is it possible to set it as well when opening a new browser? Is it possible to change the screen resolution for a webbrowser as well? As you see this is common problems while running the scripts at another computer. Are there any solution for these problems ? Tue, 09 Oct 2012 14:29:35 -04002018-01-30T19:49:42-05:00/Support/Forum/rapise/issues-questions/393.aspxthreadId=395David J (support1@inflectra.com)Performance tests in Rapise Was looking into the user guide but did not find anything about how to create performance tests in Rapise. Do you generally suggest for loops in the code or are there any other way to loop the tests? Do you have any code example to show? Thu, 11 Oct 2012 07:05:28 -04002016-04-06T14:17:23-04:00/Support/Forum/rapise/issues-questions/395.aspxthreadId=396Jenny Davidsson (jenny.davidsson@ascom.se)Rename tests and test objects in Rapise?Seems like it is not possible to rename projects in Rapise? (Creating a test and then copy it and rename all files still opens the old file names when opening Rapise? As a test case programmer I would like to rename Analogplayobjects as well as recognized images to simplify code maintainability when the application is updated. Is it possible in some way? Fri, 12 Oct 2012 07:28:08 -04002012-10-12T08:52:01-04:00/Support/Forum/rapise/issues-questions/396.aspxthreadId=695David J (support1@inflectra.com)Sharing learned object tree? Is there a way to make the object tree that I learn accessable by all scripts? Many of my scripts use the same objects and I end up having to relearn them every time. We also have multiple people writing scripts that use the same general list of objects. It would be nice if one person could learn an area of the application and share the object trree with the other members of the team. Once you have learned all the objects of an application it's often easier to write new scripts instead of recording new scripts but without the ability to share/copy the object tree, writing scripts is impossible. Thanks for your help. Karl Tue, 27 Aug 2013 18:01:52 -04002013-09-05T16:17:01-04:00/Support/Forum/rapise/issues-questions/695.aspxthreadId=428David J (support1@inflectra.com)What does SeS term? Hi. What does SeS? Is it an acronym for something ? Not in glossary terms , but it appears everywhere . Best Regards. Ignacio Martin. Wed, 14 Nov 2012 21:54:37 -05002012-11-15T20:09:21-05:00/Support/Forum/rapise/issues-questions/428.aspxthreadId=501Jens Johansson (jens.ake.johansson2@gmail.com).trp file not created? I'm evaluating Rapise, and at the beginning Rapise always opened a tab showing a log/test report (*.trp) after each time a test case was executed. No it doesn't do that anymore and I can't find any .trp file. Anyone has any suggestions why? I just can't figure it out... I'm thankful for any help! Mon, 11 Feb 2013 15:39:57 -05002013-02-11T15:44:18-05:00/Support/Forum/rapise/issues-questions/501.aspxthreadId=560David J (support1@inflectra.com)Record/Learn doesn't recognize a dialog box I'm in the process of converting scripts written in VBScript to Rapise. One of the things our AUT does is display a dialog box in order to login to the application. I can't get Rapise to recognize that the dialog box is there. How it was done in QTP was to use Dialog("User Signon").Exist. How can I get Rapise to recognize the signon dialog so that I can have the test script sign on to the AUT? Fri, 12 Apr 2013 16:11:43 -04002013-04-17T14:33:11-04:00/Support/Forum/rapise/issues-questions/560.aspxthreadId=903Inflectra Sarah (donotreply6@kronodesk.net)Rapise with IBMi (AS/400) One of the applications we test runs on the IBMi (AS/400). Previously we used QTP which required using a Stingray plugin for 5250 emulation. Has anyone used Rapise with the AS/400 and if so, was a plugin or other program required? Tue, 13 May 2014 13:58:00 -04002014-05-13T15:33:17-04:00/Support/Forum/rapise/issues-questions/903.aspxthreadId=543David J (support1@inflectra.com)Sending report using email Hi guys, is it possible ( and if yes how) to send the report to defined emails? i'd like to send just the status of single testcases like: test1 - success test 2- failed ..... thanx Tue, 19 Mar 2013 13:17:54 -04002013-03-21T16:01:00-04:00/Support/Forum/rapise/issues-questions/543.aspxthreadId=649David J (support1@inflectra.com)Unable to retrieve data from JavaTables within a Java applicationI'm trying to do a regression test for a Java application, this application has a couple of Java Tables in it I would like to retrieve data from a specific cell that I have on a Table so I can validate results, when I use the Record/Learn function on the application what it does is to click on a specific coordinate within application window (eg. DoLClick(131, 210) ), it will not recognize tables and cells within the Window, but only click on the specific coordinates... which wont let me retrieve data using any DoSelectItem() or GetSelectedText() or item, etc since it does not recognize specific objects only the window. I already tried using the "Learn" and the "Pick Object" functions also I used the Java/SWT/generic libraries and the option Auto to select automatically a Library I'm not sure what I'm missing... Hopefully someone can help me to find out the solution for this Thanks Thu, 18 Jul 2013 22:22:47 -04002013-07-19T18:56:47-04:00/Support/Forum/rapise/issues-questions/649.aspxthreadId=1231Kat A (support2@inflectra.com)Windows 10 Edge support I'm curious when Edge support will be added. Do you guys have a version that works with the preview builds or will you be holding off until its official release? Fri, 12 Jun 2015 17:59:42 -04002016-02-01T15:15:40-05:00/Support/Forum/rapise/issues-questions/1231.aspxthreadId=811David J (support1@inflectra.com)Debugger always on My Rapise doesn't want to run or record without the debugger being turn on. When I tried to Record the browser doesn't open and it goes back to the Rapise application. After it goes back, in the Output box says the "Script execution time was exceeded on script "......\\Recorder.js." When I play a script in Rapise. I get an error saying that there is no response and the file runs for a long period of time and I have to close the application for it to stop. I was wondering how can I overcome this problem? Mon, 27 Jan 2014 19:42:14 -05002014-04-26T01:52:32-04:00/Support/Forum/rapise/issues-questions/811.aspxthreadId=875David J (support1@inflectra.com)dll error when trying to playback recording Goodday, I am working on a trail version of Rapise. After successfully recording a script, I click on the Play button, but get the following message: ConnectionPointWrapper.dll is not properly registered! When I click Ok, the message is removed but the script is not played back. I am working on Windows 7, I have done a repair, deleted the dll and recreated it, but still displaying the same error if trying to playback. Can you please give advise as to what I am doing wrong. Thank you Thu, 03 Apr 2014 06:59:18 -04002014-04-03T17:41:43-04:00/Support/Forum/rapise/issues-questions/875.aspxthreadId=897Judith Brown (judith.brown@countdown.co.nz)white box testingTesting without a UI Hi, Is there a way to set up testing of .NET framework using Rapise when the UI isn't ready yet? We're working on setting up all the underlying framework code first, but I want to run additional testing from a QA perspective so that it's not just the unit tests giving coverage of this important underlying area. Cheers, Amanda Thu, 08 May 2014 22:09:34 -04002014-05-12T22:03:19-04:00/Support/Forum/rapise/issues-questions/897.aspxthreadId=902Judith Brown (judith.brown@countdown.co.nz)File not found error for global functions Hi, I want to set up global functions for my tests that will sit in their own folder, so that only one file will be updated for global functions. The help file says to use global.getFullPath for the user created functions, but this is in the test case folder, which means we'd need to copy the global functions into each test case folder. I've created a folder and added my functions file to this folder, and tried to call it like so: eval(g_helper.Include("\"C:\\Rapise\\Tests\\globalFunctions\\globalFunctions.js\"")); However, this just returns an error saying file not found. Is there something else I need to do in order to access files in another location? Cheers, Amanda Tue, 13 May 2014 03:02:20 -04002014-05-13T21:06:13-04:00/Support/Forum/rapise/issues-questions/902.aspxthreadId=955Judith Brown (judith.brown@countdown.co.nz)rapise command line cmd line SESExecuteEasy way to cmd line from Octopus on one server to Rapise on another? I've got the cmd line info for running the rapise script and the way it's written it launches SESExecute locally, however, I need this to run on a different machine than the one sending the cmd and we can't install Rapise on the server sending the cmd. Is there an easy(ish) way to do this? Can the cmd line run an SeSExecute on a different machine and get the results back on the local machine? Or will selecting SESExecute, regardless of location, always try to run locally to the cmd line?Mon, 21 Jul 2014 23:32:06 -04002014-07-21T23:38:14-04:00/Support/Forum/rapise/issues-questions/955.aspxthreadId=956Jim R (donotreply5@kronodesk.net)rapise objectsObjects recreated every time record is runIs there a way to stop Rapise from creating new objects every time you record? Example... the first time you record it creates the objects for the elements on the screen. You then record again to get the next part of the script and a second set of identical objects are added to the object file, this time with a 1 on the end of their name. You have to then delete all these objects and update the recorded script to use the original objects. Wed, 23 Jul 2014 01:15:39 -04002014-08-01T16:04:47-04:00/Support/Forum/rapise/issues-questions/956.aspxthreadId=957Jim R (donotreply5@kronodesk.net)Undefined variable Hi, I'm trying to add a URL variable to my objects file so that it's easy to change when testing on different servers. I've followed the info in here: https://www.inflectra.com/Support/KnowledgeBase/KB11.aspx I've tried adding the variable definition to the .user and test file but wherever it's located I get an 'undefined' error. Is there something special you need to do in order to use variables in the object file? Cheers, m Wed, 23 Jul 2014 02:53:18 -04002014-08-01T16:09:09-04:00/Support/Forum/rapise/issues-questions/957.aspxthreadId=963lovely Thakur (thakurlovely1404@gmail.com)rapise objects object not found chromeObjects not found on first run Hi, I've got a weird issue going on with a script which is getting quite frustrating. The script opens Chrome, navigates to a page and does a Global.DoWaitFor('Search'); It's waiting for the main search button to appear on the page so that I know the page has loaded. After this it verifies the search button is enabled and that the text is correct. The issue I'm having is that the first time you run it you get an object not found error on the verification step. If I then re-run the script leaving the previous failed chrome window open, the script successfully opens a new Chrome window, navigates to the page but this time finds the objects and passes. This happens every time if starting from a point of no Chrome window open. I have tried adding in a Global.DoSleep and upped it to 15 seconds (15000), but still no luck on the first run. Any ideas anyone? Cheers, Amanda Tue, 05 Aug 2014 05:34:14 -04002022-12-09T04:10:48-05:00/Support/Forum/rapise/issues-questions/963.aspxthreadId=1302Kat A (support2@inflectra.com)DoSendKeysDoSendKey for ALT-1 Hi Friends, To test if short-cut key [ALT+1] is working. I am using Global.DoSendKeys() command I have tried Global.DoSendKeys('{%}+1') Global.DoSendKeys('{%1}') Global.DoSendKeys('%1') Global.DoSendKeys('%1') Global.DoSendKeys('%{1}') Global.DoSendKeys('%(1)') But it did not work. any help shall be appreciated. Thanks Jay Wed, 23 Sep 2015 06:07:04 -04002015-09-23T16:30:00-04:00/Support/Forum/rapise/issues-questions/1302.aspxthreadId=907David J (support1@inflectra.com)rapiseRapise is installed but Record and play doesn't work Hello, I installed the Trial version for Rapise but nothing happens when I click Record button. I only realized an output like this " C:\Program Files (x86)\Inflectra\Rapise\Engine\Recorder.js(70, 1) mscorlib: Could not find a part of the path 'C:\ProgramData\Documents\Rapise\Samples\UsingXML\%ALLUSERSPROFILE%\Documents\Rapise\Scripts\AllLibraries.json'. " on Errors window. Has anybody faced such issue? Thanks with best regards, Bilge Fri, 16 May 2014 11:29:31 -04002014-05-16T15:52:01-04:00/Support/Forum/rapise/issues-questions/907.aspxthreadId=962Dubraska Nolan (dubraska.nolan@reged.com)"Can't Open File" error Hello, I am trying to save a TS from Rapise into a Test Set in Spira but when I am selecting the project at the "Save Remote Repository" window in Rapise it throws a "Can't Open File" error. This starting happening after I change the token name at the Rapise Launcher - Does this have anything to do with it or there is something I am doing incorrectly? I really appreciate the advise! Thank you, -Dee Thu, 31 Jul 2014 17:21:36 -04002014-08-01T17:58:03-04:00/Support/Forum/rapise/issues-questions/962.aspxthreadId=953Jim R (donotreply5@kronodesk.net)RapiseLauncher Cmd prevents click on UI elements Hi, I run my automated test cases from Spira and some tests fail due to RapiseLauncherCmd that hides the required control. Is there a way to handle this issue? May be there is some parameter in config that makes RapiseLauncherCmd run in a silent mode? Thanks. Tue, 15 Jul 2014 07:49:47 -04002014-07-18T22:09:58-04:00/Support/Forum/rapise/issues-questions/953.aspxthreadId=1076Jim R (donotreply5@kronodesk.net)rapise dcom object URLwildcard character in URL proprerties We're building a common objects list for an application, starting from our IDE, to use the same list for different test . In this way the recorder don't have to learn the object. Many objects have the field url that ends with ?1234 where the number is the session id. This means that everytime we run again the recorder, the recorder learn a new object and use this new one in the script. I check the properties for the old and the new one and they differs only in the URL property. In "play mode" everything works fine, I guess the engine use only the xpath to identify an object, so it's the same have SeS('ok').DoClick(); or SeS('ok1').DoClick(); for the testing purpose. In any case the application set up a new and different session id and use it for the current session (I see that in the browser address bar). So finally the question: it's possible to use a wildcard character to write the URL properties (i.e http://myapplication.com?* instead http://myapplication.com?1234) or use something "like" in SQL or a regular expression to prevent duplicate in objects list? Thanks and regards Matteo Fri, 21 Nov 2014 13:26:42 -05002023-05-22T20:25:27-04:00/Support/Forum/rapise/issues-questions/1076.aspxthreadId=1075Kat A (support2@inflectra.com)Not able to Run Test Script using Command LineI have used below code to run test script using Command Line . cscript.exe "C:\Program Files (x86)\Inflectra\Rapise\Engine\SeSExecutor.js" "D:\TestRapise\MyTest\MyTest.sstest" it launches the Rapise successfully but not able to run the script. Can you Please help ? Wed, 19 Nov 2014 14:21:15 -05002014-11-20T17:49:55-05:00/Support/Forum/rapise/issues-questions/1075.aspxthreadId=1083neeta S shevkar (neeta.shevkar@synechron.com)ShortKeys Hi, What is shortcut key to stop scripting in b/w playing script.Plz reply n also if u can plz send us the list of shortcut keys of all button in rapise. Regards, Rahul Gupta Fri, 28 Nov 2014 12:33:38 -05002014-12-04T11:19:59-05:00/Support/Forum/rapise/issues-questions/1083.aspxthreadId=1084neeta S shevkar (neeta.shevkar@synechron.com)Facing error Input Error: There is no script engine for file extension ".js". on newly installed rapise trial version Hi , I have installed the rapise trial version recently. and I have added only code in Function Test () - a message box Global.domessagebox("hi"); and after playing it is throwing error Input Error: There is no script engine for file extension ".js". Also while recording script it is just only flashing not starting with playback functionality. I am running rapise on chrome browser and chrome extension for rapise is installed. Please suggest. Mon, 01 Dec 2014 11:00:42 -05002014-12-02T08:45:12-05:00/Support/Forum/rapise/issues-questions/1084.aspxthreadId=1091David J (support1@inflectra.com)Issue with Capture screenshot Hi, While using your demo version for Rapise Automation Tool, I was facing some issue on Capturing the screenshots (When objects are not found), I used the below code. I tried the help document provided, but still unable to resolve the issue, could you please guide me to the exact flow on how we can capture screenshots while execution when objects are not found. var desktopWnd = g_util .GetDesktopWindow(); var img = new ActiveXObject( "SeSWrappers.Utils.ImageWrapper" ); img.Capture(desktopWnd.PosX, desktopWnd.PosY, desktopWnd.PosWidth, desktopWnd.PosHeight); var d = new Date (); var img = new ActiveXObject( "SeSWrappers.Utils.ImageWrapper" ); //"Img\Img" & Day(Date)& Month(Date) & Year(Date) & Hour(Now) & Minute(Now) & Second(Now) &".jpg" var strDateTime = d.getDate()+ "_" +d.getMonth()+ "_" +d.getFullYear()+ "_" +d.getHours()+ "_" +d.getMinutes()+ "_" +d.getSeconds()+ ".jpg" ; g_reportHtmlPath = "path" +strDateTime; img.save(g_reportHtmlPath); console.log(img) object is unidentified on “img.save(g_reportHtmlpath) Thu, 04 Dec 2014 11:22:10 -05002014-12-08T18:57:36-05:00/Support/Forum/rapise/issues-questions/1091.aspxthreadId=1147Kat A (support2@inflectra.com)Web Service Testing using Rapise While reading through the documentation on Rapise I could only see tutorials around testing REST Web Services. Can I test SOAP Web Service with Rapise Tue, 03 Feb 2015 14:15:14 -05002015-02-03T16:31:07-05:00/Support/Forum/rapise/issues-questions/1147.aspxthreadId=1193David J (support1@inflectra.com)silverlight uiautomationRapise can't capture object in silverlight I am using auto libraries when I record. It come out with "Click on Sliverlight control host" while capture. I also try with using UIAutomation libraries to record, but it come out with "No Name" for every object name. What's the problem regrading to this? I am using trial of Rapise and going to evaluate this. Mon, 23 Mar 2015 02:53:57 -04002015-04-07T04:39:16-04:00/Support/Forum/rapise/issues-questions/1193.aspxthreadId=1225Jim R (donotreply5@kronodesk.net)Running part of test set? Hi all, Is there a way to execute a part of Test Set using Rapise Launcher? tnx! Mon, 08 Jun 2015 12:22:22 -04002015-06-14T00:35:37-04:00/Support/Forum/rapise/issues-questions/1225.aspxthreadId=1277David J (support1@inflectra.com)Spy tool DOM tree not displayed Hello, I am currently using the Rapise Trial version in order to test my company's web application. The test recording starts at the login page, however when using the s[y tool to learn elements on pages past the login page this does not work for some reason. After loading a snapshot the DOM tree stays empty. We really need to spy tool to work in order to create assertions in our test. How should I solve this. Sincerely, Linford Fri, 31 Jul 2015 14:04:39 -04002015-07-31T18:16:32-04:00/Support/Forum/rapise/issues-questions/1277.aspxthreadId=1312Kat A (support2@inflectra.com)Rapise JavaScriptCalling webpage custom JavaScript functions Hello, Is it possible to call custom JavaScript functions that are present on a webpage. For example a webpage uses a script containing several javascript functions for interacting with the webpage. Would it be possible to call these functions from a Rapise test? Sincerely, Linford Goedschalk Fri, 09 Oct 2015 10:36:09 -04002015-10-09T14:37:56-04:00/Support/Forum/rapise/issues-questions/1312.aspxthreadId=1311Concepcion C Bautista (mbautista@occ.com.mx)Using JS Hi, im new using rapise, i have a question.... How can i use 'document.getElementById' from javascript? And also, i cant use alert from javascript Thanks in advance conchitabh Tue, 06 Oct 2015 15:55:47 -04002015-10-07T22:52:04-04:00/Support/Forum/rapise/issues-questions/1311.aspxthreadId=1335David J (support1@inflectra.com)Can we test Oracle Forms 6i Apps using Rapise tool Hi, We have an application developed using oracle forms 6i, I want check whether Rapise will support those controls. Wed, 09 Dec 2015 13:03:10 -05002015-12-10T19:07:37-05:00/Support/Forum/rapise/issues-questions/1335.aspxthreadId=1338David J (support1@inflectra.com)How to build dynamic object using DOLOAD String using external js file Hi, How to build dynamic object using DOLOAD String using external js file any example will be much appreciated. Mon, 14 Dec 2015 09:39:50 -05002016-01-06T20:35:49-05:00/Support/Forum/rapise/issues-questions/1338.aspxthreadId=1415David J (support1@inflectra.com)rapise flex adobeRecording Embedded Flex Objects with Rapise The application I'm trying to test is embedded Flex within an HTML shell. When recording automated test cases, Rapise identifies the HTML objects without any issue but ignores anything that is within the embedded Flex area. Has anyone overcome this issue and, if so, how? Thu, 17 Mar 2016 02:25:05 -04002016-03-18T14:14:00-04:00/Support/Forum/rapise/issues-questions/1415.aspxthreadId=1349Inflectra Sarah (donotreply6@kronodesk.net)Data Driven Testing SpreadsheetIs it possible to get Rapise to extract random data from a spreadsheet and then input the data into a field on a website I know how to extract data from a spreadsheet but i'm having trouble using that particular piece of data to use within the same script and enter into a form on a website. Tue, 26 Jan 2016 10:47:30 -05002016-01-29T19:44:13-05:00/Support/Forum/rapise/issues-questions/1349.aspxthreadId=1354Inflectra Sarah (donotreply6@kronodesk.net)Rapise APIRapise APIDoes Rapise come with an API (DLL's), as I would like to use the Rapise functionality within a C#.NET application? If yes, are there any sample .NET programs? Thu, 28 Jan 2016 02:37:29 -05002016-01-29T20:04:31-05:00/Support/Forum/rapise/issues-questions/1354.aspxthreadId=1396Naina Chaurasia (naina.chaurasia@valuelabs.com)What is difference between RapiseLauncher and Spira RemoteLaunch Hi, What is difference between RapiseLauncher and Spira RemoteLaunch? If both are different then from where i can install RapiseLauncher? Fri, 04 Mar 2016 12:12:26 -05002016-03-08T07:11:39-05:00/Support/Forum/rapise/issues-questions/1396.aspxthreadId=1401Naina Chaurasia (naina.chaurasia@valuelabs.com)Need to understand how extract user scenario works in Rapise Hi, I have created Login testcase of login page from Rapise,then i have created scenario by using extract user scenario named it as Login. Now again i have created new testcase and named it as Homepage . If i want to call login user scenario (which was created inside login.js file) inside homepage.js file, then how it would be possible? Regards, Naina Wed, 09 Mar 2016 11:33:40 -05002016-03-11T06:18:36-05:00/Support/Forum/rapise/issues-questions/1401.aspxthreadId=1406Manish Agrawal (manish.agrawal@valuelabs.com)How to call one test script inside other test script Hi, I have created two test script Login and Home.Now inside home script i need call login script.How code reuse ability will work? Thanks Naina Fri, 11 Mar 2016 07:23:47 -05002016-03-21T06:22:22-04:00/Support/Forum/rapise/issues-questions/1406.aspxthreadId=1407David J (support1@inflectra.com) Perform intelligent playback from SpiraTest by using rapise remote launchHi, How to Perform intelligent playback from SpiraTest by using Rapise remote launch. I need steps because i am not getting in documents. Thanks Naina Mon, 14 Mar 2016 05:32:03 -04002016-03-14T11:32:02-04:00/Support/Forum/rapise/issues-questions/1407.aspxthreadId=1410Inflectra Sarah (donotreply6@kronodesk.net)Object manager Hi, can you please explain me these two points how it is possible by Object manager? 1. With the adoption of Agile methodologies, the need to be able to adjust the test scripts without rewriting. 2.Rapise's powerful object manager ensures that changes in the application can be handled without any script rewrites. Thanks Naina Tue, 15 Mar 2016 12:30:53 -04002016-03-16T18:40:15-04:00/Support/Forum/rapise/issues-questions/1410.aspxthreadId=1412Inflectra Sarah (donotreply6@kronodesk.net)Where i can find javascript library predefined methodsHi, I need to see all the predefined methods of javascript or javascript document beacuse i am unable to find such method which shows any user defined variable's value? Eg : function Test() { var a = 8; alert(a); or console.log(a); } I am not able to view variable value.Please let me know the predefined method. Wed, 16 Mar 2016 09:35:28 -04002016-03-16T19:06:10-04:00/Support/Forum/rapise/issues-questions/1412.aspxthreadId=1405Vijay Khatri (vijay.khatri@valuelabs.com)Selenium SettingsSelenium Settings options not available in Rapise 4.0.6.38 version Hello, I have downloaded and installed the latest version of Rapise i.e Rapise 4.0.6.38, I tried to look for the 'Selenium Settings' option under Tools tab but it was not available there. I have attached the screenshot of the same. Please check and suggest. Fri, 11 Mar 2016 05:04:57 -05002016-03-14T06:10:10-04:00/Support/Forum/rapise/issues-questions/1405.aspxthreadId=1416Inflectra Sarah (donotreply6@kronodesk.net)re-using test logic How to play a sub test? Thu, 17 Mar 2016 07:40:18 -04002016-03-18T14:15:27-04:00/Support/Forum/rapise/issues-questions/1416.aspxthreadId=1424Inflectra Sarah (donotreply6@kronodesk.net) how to save and reuse test script in shared folder we have created a shared folder to save test scripts, and recorded the test scripts, how ever when we are trying to look from other m/c we are not able to see the script/ object tree. on the same m/c also object tree are not viewable. Mon, 28 Mar 2016 09:34:02 -04002016-04-01T21:32:16-04:00/Support/Forum/rapise/issues-questions/1424.aspxthreadId=1431David J (support1@inflectra.com)unable to create a test set in rapise Hi, i am unable to create a test set in rapise. An error is occured i.e "Violation of foreign key occured" Mon, 04 Apr 2016 05:56:29 -04002016-04-04T11:38:20-04:00/Support/Forum/rapise/issues-questions/1431.aspxthreadId=1439riya chouksey (riya.chouksey@valuelabs.com)framework in RapiseHi, Is there any feature in Rapise through which we can make a framework. Please reply as soon as possible. Mon, 25 Apr 2016 06:38:11 -04002016-05-02T06:04:58-04:00/Support/Forum/rapise/issues-questions/1439.aspxthreadId=1484David J (support1@inflectra.com)Scroll Bar Issues Hi Team, Currently am am using Rapise Tool for Desktop & Web Automation - The Issue currently am facing is not able to Record the Scrolling Up or down or on Clicks on Scroll buttons. Could you please help me out in this Scroll Bar issues Thu, 23 Jun 2016 11:20:18 -04002016-06-23T14:55:50-04:00/Support/Forum/rapise/issues-questions/1484.aspxthreadId=1724David J (support1@inflectra.com)Node.js libraries I am exploring the idea of using Rapise for automation and am wondering about Javascript library support. Would it be possible to integrate with Node.js libraries? For example Mongodb JS APIs: https://www.npmjs.com/package/mongodb If so, how would the libraries be included? Wed, 19 Jul 2017 03:27:50 -04002017-07-21T15:33:53-04:00/Support/Forum/rapise/issues-questions/1724.aspxthreadId=1662David J (support1@inflectra.com)Error raised when I run the recorded script!!! Hi all, Could anyone guide how to setup selenium? Wed, 12 Apr 2017 10:44:28 -04002017-04-14T15:16:19-04:00/Support/Forum/rapise/issues-questions/1662.aspxthreadId=1733Jim R (donotreply5@kronodesk.net)Trouble recording or playing script I recorded a script and then created custom functions under *.user.js file. Saved the objects in the same directory where the script is. Now when I am trying to play the script it failed with below error, Error evaluating users file C:\Users\nitesh.agarwal\Documents\My Rapise Tests\MADAX - Purchase Path\MADAX - Purchase Path.user.js (syntax error): TypeError: Object expected I am also seeing this error on trying to do any recording. Thanks, Nitesh Tue, 15 Aug 2017 05:59:39 -04002017-08-15T14:33:37-04:00/Support/Forum/rapise/issues-questions/1733.aspxthreadId=1742David J (support1@inflectra.com)Dropdown I need help on how to record and playback a dropdown Fri, 08 Sep 2017 09:22:43 -04002017-09-08T16:37:05-04:00/Support/Forum/rapise/issues-questions/1742.aspxthreadId=1794Joyce Bati (joycebati.h2software@gmail.com)DatePicker - AngularJS Hi, I am now trying to test a system that uses AngularJS framework. Then I encountered some error every time I pick a date. It says that there is no data in the required fields even though is has a data.My question is, is there any other way on how to pick a date in a datepicker? Thank you. Thu, 11 Jan 2018 09:54:04 -05002018-01-17T01:29:16-05:00/Support/Forum/rapise/issues-questions/1794.aspxthreadId=1774Jim R (donotreply5@kronodesk.net)Selenium Integration with Spira dotnet invironment I want to integrate selenium Test with Spira test. I have downloaded NUnit and installed in VS. I am not getting how to Run NUnit GUI Thu, 23 Nov 2017 11:26:46 -05002017-11-30T16:20:36-05:00/Support/Forum/rapise/issues-questions/1774.aspxthreadId=1764David J (support1@inflectra.com)Unable to launch command prompt using rapise when recording a script Hi I am trying to automate the flow of running a command in the command prompt for several machines. I am unable to launch command prompt from Rapise. When an instance of command prompt is already open, I am able to select that and complete the test and for replaying the script I need to have the command prompt open. I cannot do this in all the machines that I would like to test. I want Rapise to launch command prompt and execute the command and close the window . When I click on Record and I select Run Application tab and give the path to cmd.exe, It does not open the command prompt. Please let me know if this is possible? Thanks Jagan Mon, 06 Nov 2017 13:57:06 -05002017-11-06T17:37:49-05:00/Support/Forum/rapise/issues-questions/1764.aspxthreadId=1843Jim R (donotreply5@kronodesk.net)RapiseJavaScriptCTRL+click - jump to method declaration Is there a way to jump to method declaration, something like CTRL+click in Rapise? Since we mainly work on Dynamics AX in JavaScript , and the *.user.js files can be quite big, it would be very useful to have a feature to jump from the test (or sub-test ) files to the Functions file where the method is declared. Wed, 02 May 2018 08:37:41 -04002018-05-02T15:25:30-04:00/Support/Forum/rapise/issues-questions/1843.aspxthreadId=1886Dimitar Hristovski (Dimitar.Hristovski@interworks.com.mk)RapiseobjectshugeversionsCleaning up the Object Tree Hi, Im in the middle of a big MS Dynamics AX 2012 project. There are a LOT objects as is now. There are many, many duplicates, just recorded differently across few different versions of Rapise. For example, objects are recorded without wildcards Microsoft Dynamics AX , with wildcard:*Microsoft Dynamics AX* or regex:.Microsoft Dynamics AX.* Is there a way to cleanup the objects or find duplicates that I dont use in the tests, since I only use about 2/3 of recorded objects and its getting messy already. Tue, 17 Jul 2018 16:25:09 -04002018-07-18T16:25:25-04:00/Support/Forum/rapise/issues-questions/1886.aspxthreadId=1893David J (support1@inflectra.com)*.objects.js SVN problems Every time a new object is recorded, the object file is changed, new lines are added, all of which is normal. But, there are other changes to the object file as well. Some character(s) are not valid and the SVN doesnt recognize it as a svn:mime-type text/plain file upon committing. Opening the *.objects.js file in a text editor (Notepad++) and copy all - paste solves the problem for that commit. But we do this every commit and its annoying... Every second time an object is recorded, on all of the lines, spaces and tabs are messed up and all of the object names are changed as well: either with or without quotes. Wed, 01 Aug 2018 16:09:38 -04002018-08-09T01:44:28-04:00/Support/Forum/rapise/issues-questions/1893.aspxthreadId=1925Dimitar Hristovski (Dimitar.Hristovski@interworks.com.mk)Rapise multiple users chrome HTML Multiple users - web browser usage Hi all, Were using Rapise on a single VM with multiple users that log in as a separate (AD) user at the same time, and each one has a separate user folder (C:\Users\ ). Rapise is installed in the standard folder (C:\Program Files (x86)\Inflectra\Rapise). Were developing tests for both Dynamics AX and Web Browser. When running the tests for the Chrome HTML web browser at the same time, the test runs get mixed up... Tests for the pages that the other user is running start on my browser and vice versa for the other user. The tests get swapped and mixed up and we cant develop or run tests at the same time... Rapise uses one config file (for all users), so we cant use separate (portable) browsers. Any suggestions? Thu, 04 Oct 2018 15:38:15 -04002018-10-10T11:25:54-04:00/Support/Forum/rapise/issues-questions/1925.aspxthreadId=1932Jim R (donotreply5@kronodesk.net)Jenkins Rapise remote machine RDCJenkins to run Rapise tests on remote machine Hi all, We are developing tests on Rapise for Dynamics AX and web apps, which are installed on the remote machine only. Well need to set Jenkins to run Rapise, but since both applications are only on the remote machine (we need the desktop to be visible for the GUI tests and we dont have a direct access from Jenkins), well need to find a way to (connect to RDC from Jenkins and) run the tests. Any suggestions? Has anyone faced or found a solution for this problem? Mon, 29 Oct 2018 14:15:50 -04002018-10-31T14:45:49-04:00/Support/Forum/rapise/issues-questions/1932.aspxthreadId=1934Max K (denis.markovtsev@inflectra.com)multiple browserssingle testSupport for multiple browsers in a single test We have a project that needs to run end to end tests sequentially, but on a different browsers. We have created separate sub-test case for each scenario that needs to open in another browser, so we call them: Global.DoInvokeTest('%WORKDIR%/CallCenter', params);    // This runs in Chrome Global.DoInvokeTest('%WORKDIR%/ApplicationConsole', params);    // This runs in IE first thing that these tests call is a function (in user-defined library) that determines in which browser and environment they run in: function selectEnvCallCenter(url) { Navigator.Select('Chrome');     Navigator.Open(url); ... function selectEnvAppConsole(url) { Navigator.Select('IE'); Navigator.Open(url); ... Invoking the sub-tests works in the main test file, but if we try to invoke these from a sub-test, it opens all (sub-)sub-test files in the same browser and doesnt change browsers... Fri, 02 Nov 2018 11:55:04 -04002018-11-06T08:51:17-05:00/Support/Forum/rapise/issues-questions/1934.aspxthreadId=1937Dimitar Hristovski (Dimitar.Hristovski@interworks.com.mk)LibUser LibUser Lib question I have created a user library where I added the StartDynamics() function: /** Base Functions **/ function StartDynamics() { var dynamicsPath = "C:\\Program Files (x86)\\Microsoft Dynamics AX\\60\\Client\\Bin\\"; var dynamicsFullPath = dynamicsPath + "Ax32.exe"; var dynamicsQA = " \\\\DAX-RDS-101-WD\\AX_config\\QA_CUS.axc"; var windows = g_util.FindWindows("regex:.Microsoft Dynamics AX.*", "AxMainFrame"); if (!File.Exists(dynamicsFullPath)) { Tester.FailTest("Dynamics AX Client is not installed on this computer"); return; } if (windows.length == 0) { Global.DoLaunch(dynamicsFullPath, dynamicsPath, false); Global.DoSleep(10000); if (SeSFindObj('QA')) { SeS('OK1').DoClick(); Tester.Message('QA'); } if (SeSFindObj('Communication_error')) { SeS('OK2').DoClick(); Tester.Message('Communication error'); Global.DoLaunch(dynamicsFullPath + dynamicsQA); Global.DoSleep(15000); if (SeSFindObj('Communication_error')) { SeS('OK2').DoClick(); Tester.FailTest('Communication error'); } } Global.DoWaitFor('Home', 60000, 5000); } maximize('UIAutomation'); SeS('TabControl').DoSelectTab("Home"); } I call the function in the TestInit() function in all the tests: function TestInit() { StartDynamics(); } LibBase.jslib file: SeSRegisterLibrary( { name: 'Base', description: 'Base - Default user-defined library', include: 'Lib/LibBase/LibBase.js', info: null, load_order: 1000, recording: false, // Only use in playback. If it has recording rules then set it to 'true' autoload: true // Always load this library for this test and each subtest } ); The problem is that the tests occasionally fail on the line in TestInit() where I call the StartDynamics() function from the LibBase.js library with: TypeError(-2146823281): Handle is null or not an object and only if the Dynamics is not started. Now, my questions are: 1. Is TestInit() or TestPrepare() better for this kind of function? 2. Should I edit some parameters in the LibBase.jslib file so it reads the LibBase.js immediately on running (if that is the problem here) Wed, 07 Nov 2018 15:35:40 -05002018-11-09T10:41:53-05:00/Support/Forum/rapise/issues-questions/1937.aspxthreadId=1814Nicholas DiPinto (nicholas_dipinto@wycliffeassociates.org)AuthenticationCheck If Signed In Before Test Start Hello, I am trying to write a test that involves the actions of signing in and out of a web application. However, I also work manually in this web app as well so I need to sign in manually as well, which can mess up the test results if I forget to sign out when Im done. To save myself worry, Im trying to add an if-statement in my script that checks if the user profile button that appears when one is logged in is on the screen. If it is, then the script will continue, but if not, then the script will perform the necessary log-in actions. I seem to be having trouble generating the if-statement in the RVL language though. What would an if-statement in RVL look like that verifies if a user is logged by checking if the user profile icon, or maybe something else, is visible in the window? Wed, 07 Mar 2018 18:28:37 -05002018-03-20T14:00:55-04:00/Support/Forum/rapise/issues-questions/1814.aspxthreadId=1815Dimitar Hristovski (Dimitar.Hristovski@interworks.com.mk)ChromeClosing Chrome Gracefully Hello, I am trying to make a practice of including a step at the end of my RVL scripts that closes Google Chrome in a graceful manner. Previously, a help desk person told me to include this row in my RVL script: Action Global DoSendKeys {%F4%} At one point this seemed to work, but now I get an error message whenever I run the script saying that {%F4%} is not valid input for that step. Ive also tried replacing {%F4%} with {^+Q} (CTRL-Shfit-Q) to close it, but that produces the same error message. I stay away from using: Action Global DoKillByName chrome.exe Action Global DoKillByName rapisechrome.exe Both of these steps work correctly, but when I use them and reopen chrome I get the little prompt in the corner of the window that says Chrome closed unexpectedly and wants to know if I want to restore the page. Personally, I dont like that little prompt because I imagine it might cause issues later on if I ever need to make a recorded manual step or do an image comparison that involves the same area of the screen that is covered by that little prompt. Does anyone know how I can close Google Chrome (better yet all browsers) at the end of my script in a way that wont cause that little restore prompt to appear. Wed, 07 Mar 2018 18:43:11 -05002019-01-10T10:21:18-05:00/Support/Forum/rapise/issues-questions/1815.aspxthreadId=1817Max K (denis.markovtsev@inflectra.com)Sending Input to a Date Field Hello, Has anyone ever used Rapise to automate the action of sending input to a field expecting a date value? Im trying to do this in a Microsoft Dynamics 365 Sales application and cant seem to get it to work inside Rapise. Heres the breakdown of the tasks and what Rapise does: What I Try To Record: 1. Click on a drop-down menu (a calendar is expected to appear inside the menu) 2. Click on a date in the calendar that will appear in the date field What Rapise Records: 1. Click on the drop-down menu Whats strange is the calendar does not pop-up even though the steps executed in the trp file shows that Rapise clicked the field. Ive also tried to record typing the date manually, but Rapise doesnt seem to want to record that either. Including a line in my JS file that looks like this: Global.SendKeys(03/15/18 doesnt seem to work for me either. Does anyone have any ideas why I cant get Rapise to fill in this field? Any help would be appreciated. - Nick Thu, 15 Mar 2018 17:43:44 -04002018-03-16T12:13:52-04:00/Support/Forum/rapise/issues-questions/1817.aspxthreadId=1798Jim R (donotreply5@kronodesk.net)How to find Combo box selected item index? Hi I am facing difficulty in using the Combo boxes in my Windows application. The goal is to :- Read all the options, find out the selected index and set a new index. The combo boxes in question have the following architecture - ComboBox -> ListItems (un-identifiable) -> Text(the string value). My idea is to read all children of combo box (loop), then read children of each ListItem(loop) and then find out the selected index thus knowing which option has been selected . Later change it as per requirement. For doing so I need to store ComboBoxs and ListItems as different variables, how can this be done? Also I have multiple combo boxes in same page and also in other pages how to identify each as a different, right now I am unable to identify them at all. Thanks in advance for yout help. Regards Chetan Mon, 22 Jan 2018 09:51:11 -05002018-01-24T15:19:38-05:00/Support/Forum/rapise/issues-questions/1798.aspxthreadId=1809David J (support1@inflectra.com)setupSetup Rapise-v5.5.12.6.exe problem Hi, I dont have administrator rights on my computer. I downloaded the Rapise-v5.5.12.6.exe setup, and I launched the installation with the help of the IT team, everything seemed to be ok. At the end of the setup I needed to restart my computer. When it restarted, I didnt find any file relating Rapise or Inflectra on my PC. Do you have any clue? Thanks. Sylvain Thu, 15 Feb 2018 09:30:24 -05002018-02-15T15:03:56-05:00/Support/Forum/rapise/issues-questions/1809.aspxthreadId=1933Jim R (donotreply5@kronodesk.net) rapisedatabaseoracleRapise Database Connection Hello. Im trying to connect to Oracle Thin database with DoAttach function. I use the default Windows driver for connecting to Oracle database (MSDAORA) but i receive the following error: Oracle client and networking components were not found. These components are supplied but Oracle Corporation and are part of the Oracle Version 7.3.3 or later client software installation.. I installed Oracle Client 12c and created DSN in the ODBC Data Source Administrator (32-bit) and receive the following errors: Error : ODBC driver does not support the requested properties. error name:Error error description:ODBC driver does not support the requested properties. and Error : [Oracle][ODBC][Ora]ORA-12560: TNS:protocol adapter error error name:Error error description:[Oracle][ODBC][Ora]ORA-12560: TNS:protocol adapter error after i change the connection string syntax. After all this i wrote mu own code in JavaScript, using ActiveXObject(ADODB.Connection), that successfully connects to the database with the same connection string. CONNECTION STRING: Driver={Oracle in OraClient12Home1_32bit};Data Source=[Name of DSN i cteated];User Id=[DbUsername];Password=[DbPassword]; CONNECTION STRING WITH PROVIDER: Provider=MSDAORA;Server=jdbc:oracle:thin:@[host]:[port]/[service];User ID=[DbUsername];Password=[DbPassword]; var QUERY=select * from users Database.DoAttach(CONNECTION, QUERY); ODBC CONNECTION STRING:Driver={Oracle in OraClient12Home1_32bit};DSN=[Name of DSN i cteated];UID=[DbUsername];PWD=[DbPassword]; Can i use any external driver, file, extension to be able to connect to Oracle Database? Wed, 31 Oct 2018 09:47:38 -04002020-08-08T10:57:30-04:00/Support/Forum/rapise/issues-questions/1933.aspxthreadId=1945David J (support1@inflectra.com)StopOnError not working Hi Im making tests, that i need to continue executing even if the test step fails. In settings tab, i changed the parameter stopOnError = false on all my tests. I can see that this parameter is changed in play.cmd (-eval:g_stopOnError=false) in both tests. Still one of the tests continue executing after fail, and the other not. Is there any other place i can check out, or im missing some other parameter for this that have to be set. Thank you. Fri, 30 Nov 2018 16:24:39 -05002018-11-30T21:19:47-05:00/Support/Forum/rapise/issues-questions/1945.aspxthreadId=2009Jim R (donotreply5@kronodesk.net)Rapise Suggestions IssueSuggestions are not showing when insert text in input. Hello, I have to a dd text to a field that shows suggestions and i have to select one. The problem is that when i do SeS('Enter_address').DoSetText("my address"); i cant see the suggestions. I also tried to execute JS in the console and received the same result: document.getElementById("2926:0").value = "my address"; Is this what Rapise is doing in the background and how can i resolve this? Thanks. Fri, 12 Apr 2019 11:38:12 -04002022-10-07T19:53:23-04:00/Support/Forum/rapise/issues-questions/2009.aspxthreadId=1831Stefan Mandovski (stefan.mandovski@interworks.com.mk)iframe rapise chromedriverExit from an iframe? Hello, I have ran on an issue when filling a form with multiple inputs. I am playing the test in Selenium WebDriver since thats what the client requires. One of the input fields is in an iframe - say the third one from total 5. I fill in values with DoSetText on the first two, use an XPath with @@@ to select the third input and execute DoSetText to fill in value. Rapise stays stuck in that field and wont continue onto the next one which is located out of the iframe. I have tried to first fill in the 4 input filed that are not located in the iframe and leave the iframe one as last, but after I fill all the fields I need to press a button (called Apply) to confirm the form submission and Rapise wont click on the button. I guess it somehow stays stuck in the iframe. Is there a trick or any way to get out of the iframe? version info Chrome version: 65 chromedriver version: 2.35.528161 Rapise version: 5.5.12.4 Tue, 17 Apr 2018 14:00:51 -04002018-04-18T21:40:59-04:00/Support/Forum/rapise/issues-questions/1831.aspxthreadId=1833Stefan Mandovski (stefan.mandovski@interworks.com.mk)rapise double click seleniumDoDblClick when playing tests through selenium-webdriver Hello, I have an issue that I cant solve. Im playing tests through chrome webdriver and the tests fail when a double click needs to be executed(I can only enter value into the cells by using double click and then settext or sendkeys over the cell - without the double click settest or sendkeys do nothing!). I have recorded the cell that needs to be clicked and execute SeS(cell1).DoDblClick(); but the tests fails on this step with TypeError(-2146827850): Object doesnt support this property or method. When playing the test through Chrome HTML, I don;t get this error and the step passes however I cant use Chrome HTML due to clients requirements. Any suggestions? Thanks version info Chrome version: 65 chromedriver version: 2.35.528161 Rapise version: 5.5.12.4 Thu, 19 Apr 2018 15:15:49 -04002018-04-20T08:33:22-04:00/Support/Forum/rapise/issues-questions/1833.aspxthreadId=1806Diksha Baluja (baluja.diksha971@gmail.com)rapise jenkins execjs ieRunning tests in Jenkins hangs on Navigator.ExecJS Hello Inflectra, I have tried to connect Rapise with Jenkins and started running tests locally. Ive hit a roadblock when one of my tests halts on a line that contains Navigator.ExexJS(js function). The test runs on IE and everything works when running it from Rapise. But on Jenkins it halts right before that line and seems like it never executes it, according to the out.log file. Can I get any help on this issue or do you need any additional data? Mon, 12 Feb 2018 11:52:20 -05002020-06-16T12:43:51-04:00/Support/Forum/rapise/issues-questions/1806.aspxthreadId=1834Stefan Mandovski (stefan.mandovski@interworks.com.mk)rapise jenkins parametersPassing test parameters to Jenkins build? Hello, I have one question. I have managed to run multiple tests in one Jenkins build via runtests.cmd file as described in the KB. However, I would like to pass the starting url as a test parameter to all the tests that are run through the runtests.cmd The first step in each test is Navigator.Open(url) and what I like is to pass different values to url from Jenkins for each build. (the url will be the same for each test in one test run, the goal is to run the tests in different environments). Is it anyway possible to do it? The tests that are being executed from the runtests.cmd are executed via their play.cmd files Wed, 25 Apr 2018 11:53:34 -04002018-05-07T13:05:53-04:00/Support/Forum/rapise/issues-questions/1834.aspxthreadId=1846David J (support1@inflectra.com)rapise neoload performance loadRapise to NeoLoad conversion Hi Inflectra, I have been exploring the possibility to perform a load testing using the built-in integration with NeoLoad but Ive had no luck. Whenever I try to convert a Rapise test to NeoLoad, I get the following error: What is this issue that Im facing? Rapise version: 5.6.13.19 NeoLoad version: 6.4.0 Im using Chrome 66 for recording/playback Mon, 07 May 2018 13:12:39 -04002018-05-07T13:19:31-04:00/Support/Forum/rapise/issues-questions/1846.aspxthreadId=1864Alex G (alexey.grinevich@inflectra.com)db sql query database rapiseConnect to a secure database and execute queries using Rapise Hi, I would like to connect to a database which requires login credentials. I was trying different things but failed to succeed. Can you show me an example of how to use Database.DoAttach to perform such a connection or tell me if it is even possible? Thanks! Wed, 06 Jun 2018 12:08:57 -04002018-06-07T06:34:54-04:00/Support/Forum/rapise/issues-questions/1864.aspxthreadId=1856Jim R (donotreply5@kronodesk.net)Rapise and Microsoft Dynamics Ax 2009 Hello! I am trying to use Rapise v 5.6.13.19 (trial version ) for testing Microsoft Dynamics Ax 2009. I have a problem with Grid object. A ll tables return 0 rows, although they are filled and displayed . Also, the DoClickCell(0, 0) method execute with exception: wrong params . Does the Rapise support Microsoft Dynamics Ax 2009? Mon, 21 May 2018 14:53:13 -04002018-05-21T15:51:25-04:00/Support/Forum/rapise/issues-questions/1856.aspxthreadId=1924Jim R (donotreply5@kronodesk.net)Is Rapise supported under Linux Hello Can I run my test automation scripts under linux enviroment or under Open shift container. ?? Test scripts are writen in Java, if we are able, can we produce a jar file that could run in VM?? Is there any artical or getting started that describes that?? BR Pierre Thu, 04 Oct 2018 14:54:47 -04002018-10-05T14:53:46-04:00/Support/Forum/rapise/issues-questions/1924.aspxthreadId=1888Jim R (donotreply5@kronodesk.net)rapiserecording activityselenium selenium browser pauseRecording Activity not able to start when selecting a Selenium Browser Hi everyone, Im trying to set up my first test cases , and I have selected a Selenium Chrome browser and when pressing Record button, RA window is opened but it is unable to record the activity since the resume button is disabled and the only mode seems to be Paused. Am I doing anything wrong or is there a configuration I need to take care of before starting to Record the activity? Thanks in advance. Thu, 19 Jul 2018 15:33:00 -04002018-07-20T13:50:22-04:00/Support/Forum/rapise/issues-questions/1888.aspxthreadId=1889Jim R (donotreply5@kronodesk.net)browser version browser rapiseIs there a way to set not only the (native) Browser but also the browser version? Example, if I need to Test against Chrome 65, 66, 67, is that possible in Rapise? I got a list of supported browsers I will have to keep in scope during the cross-browser compatibility testing, such as : Chrome 41 - 67 Firefox ESR IE 11 Safari 7 - 10 Edge 14 Thu, 19 Jul 2018 15:35:37 -04002018-07-20T13:50:55-04:00/Support/Forum/rapise/issues-questions/1889.aspxthreadId=1920Jim R (donotreply5@kronodesk.net)How to get a series of numbers from objects of a WEB APP and add them , and verify if the total value corresponds with the adding of those numbers? Im facing some difficulties in one case I have in my web app Im currently working with, where there are multiple rows containing number values changing dynamically time after time, and there is TOTAL which is supposed to calculate all these numbers I mentioned above. I want to create a script that will get the values of these numbers every time I run it, add between them and compare to the Total row. Any help on this? Tue, 25 Sep 2018 09:59:43 -04002018-09-29T14:35:14-04:00/Support/Forum/rapise/issues-questions/1920.aspxthreadId=1930Katie Nguyen (KNguyen@fhlbc.com)Can Rapise execute a test on a machine without user logging in? I want to schedule my regression test sets from SpiraTest to run them on a Virtual Machine nightly. Right now they dont run unless I log in to the machine and have the screen open. Can I schedule some tests to run by itself nightly without a user logging in? If not, what are my options? It doesnt make sense to me to develop automation tests but then have to manually execute them. Wed, 24 Oct 2018 19:12:32 -04002019-01-23T20:15:57-05:00/Support/Forum/rapise/issues-questions/1930.aspxthreadId=1908David J (support1@inflectra.com)injected jsRapise injected JS loaded error I have a problem with using Rapise and its chrome extension. I have to use the extension otherwise the tests wont work. The issue is that it actually does not allow me to log in into the application I am writing automated tests and I am not able to log in because of the following: Rapise injected JS loaded. Connecting to background.js as port: rapise-to-chrome/ who can help me with this? Fri, 31 Aug 2018 15:59:53 -04002018-09-02T15:05:09-04:00/Support/Forum/rapise/issues-questions/1908.aspxthreadId=1935Max K (denis.markovtsev@inflectra.com)Rapise Handling POP-UP in IE Hello, We were unable to handle the Pop-ups in IE browser. Also unable to Spy the object in the popup, when spy the element it is highlighting the background screen objects but not from the popup. Tried using the keypress (TAB, UP, DOWN) which is also not working. Any advise on this would be very helpful, Thank You .... Sat, 03 Nov 2018 00:26:01 -04002020-10-19T12:45:03-04:00/Support/Forum/rapise/issues-questions/1935.aspxthreadId=1978David J (support1@inflectra.com)Learning UI Automation & Accessible I need to perform an action on the Windows Prompt (select Leave button) that shows up on the chrome browser when are trying to navigate away from the application under test . We couldnt identify this object using Web objects option in the Spy, so tried with UI Automation as well as Accessible. The Spy does recognize the object using Accessible option. But since there is no option to save that object from the Spy screen (I can only Track or Untrack), so I created a subtest with WPF methodology (Tried Web too and that didnt work) and then started recording with Accessible option. But rapise cannot recognize the Leave object anymore. Please help Fri, 01 Feb 2019 01:50:45 -05002019-02-01T12:05:07-05:00/Support/Forum/rapise/issues-questions/1978.aspxthreadId=1979David J (support1@inflectra.com)Key Press is not working in Jenkins Key press Global.DoSendKeys({ENTER} is not working when we run our automation tests on Jenkins, but the same thing is working fine when I run in my local. Please help. Fri, 01 Feb 2019 01:55:36 -05002019-02-01T12:03:06-05:00/Support/Forum/rapise/issues-questions/1979.aspxthreadId=1954Jim R (donotreply5@kronodesk.net)Rapid Layout Validation supports? Good afternoon ! Guys, I need a feature to validate layouts on Web and Mobile screens. Does Rapise have this functionality? Font size and color validation would be an example. Thank you Thu, 13 Dec 2018 16:44:25 -05002018-12-14T15:20:20-05:00/Support/Forum/rapise/issues-questions/1954.aspxthreadId=1963David J (support1@inflectra.com)Unable to select drop down while running the script We are facing issues for selecting drop down on our application. I am using extented desktop which has 3 displays, 1st one is Built in display(Laptop screen) and 2 monitors. Actually Drop down is getting selected when test is running on Laptop screen the resolution is 1920 * 1080. But the thing is not working when it is running on other 2 screens (resolution is 1440*900). Also test is getting failed on the drop down when I run in Jenkins. Below I have provided the Xpath and the Html. Html: XPath: //label[text()=Shipping Method]/parent::div/following-sibling::div/div/div//input[@value] Tue, 25 Dec 2018 00:07:36 -05002018-12-27T04:29:48-05:00/Support/Forum/rapise/issues-questions/1963.aspxthreadId=1995Whatson Shane (voforok347@fandua.com)Running tests on remote machine and integration to devops Hi I am looking for test automation solution to automate test cases based on Microsoft Dynamics AX2012. I would like to do a POC to evaluate Rapise against my project needs. Before i start building my POC, i would like to clarify on the below: 1. Does Rapise support test automation of Microsoft Dynamics AX2012 2. Can Rapise be integrated into CI/CD pipeline. 3. Does Rapise come with an integration package/plugin for integration with Visual Studio 4. Can automated test cases of Microsoft Dynamics AX2012 be run on remote desktops and remote VMs? 5.If the test cases can be run in remote desktops and VMs, do they need a live session until the test cases complete running? i.e, if i trigger the test from my local desktop, do the physical machine from where i trigger the tests and the remote desktop/VM where the tests are running needs to be logged in all the time while tests are running or the tests can run even if the local machine and remote machine/VM are in locked state? Thu, 07 Mar 2019 07:00:42 -05002023-01-19T20:16:30-05:00/Support/Forum/rapise/issues-questions/1995.aspxthreadId=2047David J (support1@inflectra.com)Any way to speed up how fast the web test run? I am using Rapise to conduct automated tests that navigate websites. I have hundreds of cases and conducting one set of regression tests can take hours. Was wondering if their is any way to speed up how fast the test can run? Thu, 20 Jun 2019 18:41:41 -04002019-06-21T15:31:31-04:00/Support/Forum/rapise/issues-questions/2047.aspxthreadId=2058David J (support1@inflectra.com)database oracleDatabase: Provider cannot be found. It may not be installed.... Im trying to connect to an Oracle DB with an ADO connection string. The provider field of OraOLEDB.Oracle cannot be found using Rapise. I am able to use the provider through a udl test script that Ive made, so the provider seems to be working correctly. Does anyone know how to solve this? Mon, 08 Jul 2019 15:25:57 -04002019-07-08T16:06:10-04:00/Support/Forum/rapise/issues-questions/2058.aspxthreadId=2086Max K (denis.markovtsev@inflectra.com)Can Leaf nodes be found using a regular expression? I have a tree object that can have 1 or more leaf nodes. Depending on which patform the test runs, the leaf node name will have some common text. Can I search for the leaf node name using a reagular expression, and if so how do I do it? Mon, 09 Sep 2019 09:53:10 -04002020-10-09T10:45:38-04:00/Support/Forum/rapise/issues-questions/2086.aspxthreadId=2590Mike Becker (Michael.Becker@protechassociates.com)Suppress duplicate objects in Reports after using DoLoadObjects I have several tests that once they get started, load objects prior to calling a different Rapise Test. When I do this I get a fairly long list of duplicate objects. As a workaround until I can fix the duplicates problem by removing the duplicate objects, is there any way that I can suppress the duplicate objects in the reports. Its not too bad in Rapise because each object uses only 1 line, but in Spira each duplicate object might take up 5 or 6 lines. Note: I tried loading the RVL Script first and then loading the objects. That would have removed the problem with duplicates, but that did not work when I tried it. Thanks, Mike Wed, 23 Mar 2022 19:58:45 -04002022-03-24T12:00:35-04:00/Support/Forum/rapise/issues-questions/2590.aspxthreadId=2758David J (support1@inflectra.com)Mixed Recording Hello everybody, is it possible to record a test switching between desktop application and websites? thanks, Simone Mon, 13 Feb 2023 16:13:10 -05002023-02-13T17:40:19-05:00/Support/Forum/rapise/issues-questions/2758.aspxthreadId=2507Max K (denis.markovtsev@inflectra.com)How to store list of webelements & iterate through each elements How to store list of webelements & iterate through each elements using Rapise functions. Wed, 22 Sep 2021 12:04:41 -04002021-09-22T13:09:12-04:00/Support/Forum/rapise/issues-questions/2507.aspxthreadId=2740David J (support1@inflectra.com)Rapise test run in Spira It possible to have rapise report individual runs when executing a script that has been looped to use a data sheet to run multiple times. I.E instead on test run say 2000 steps passed, however many scripts (20) have ran ? Thu, 05 Jan 2023 08:15:28 -05002023-01-05T14:58:17-05:00/Support/Forum/rapise/issues-questions/2740.aspxthreadId=2876Alex G (alexey.grinevich@inflectra.com)Adding numbers together in RVL I have doing a piece of automation that requires picking a number off the screen storing as variable and adding 10 to it. Currently Im using variable and action type Increment how this is concatenating the values instead on preforming the addition. Is there a way preform addition in rvl ? Fri, 08 Dec 2023 09:43:11 -05002023-12-08T09:46:48-05:00/Support/Forum/rapise/issues-questions/2876.aspxthreadId=2598bob brutus (sdf_@gmx.fr)jenkins rapise vm remoteJenkins - Rapise - Remote Desktop Hello I want to launch Rapise script on remote Desktop with Jenkins. I have found some articles, but none seems to work. My situation: - i have a Rapise script on the HDD drive of my remote computer - Rapise is installed on the remote computer - I havec jenkins installed on a unix server with a created node of the remote computer. I want to launch the script play.cmd. It started but nothing appeared on the remote screen (but i want to launch the test withe the RDP window closed). this is an output form the log: ###MSEdge Process Created (1)Process started PID:11040Connected to Chrome window:false> copie_html();Looking for object:htmlDeserializing object:HTMLObject/htmlLocation foundLocation:0 Locator:HTMLLocator foundConnected to Chrome window:falseBase object not found by locatorObject not yet available:html attempt:1Deserializing object:HTMLObject/html Can you have a step by step guide to do it ? is it possible ? Thanks https://www.inflectra.com/Support/KnowledgeBase/KB300.aspx https://www.inflectra.com/Support/Forum/rapise/issues-questions/1932.aspx https://www.inflectra.com/Support/KnowledgeBase/KB131.aspx Mon, 11 Apr 2022 13:21:34 -04002022-04-19T13:57:36-04:00/Support/Forum/rapise/issues-questions/2598.aspxthreadId=2652bob brutus (sdf_@gmx.fr)RAPISERAPISE - internal variables HI, I am looking for a generic variable in RAPISE whith the content of the tests name. Do u have one ? And is there a list of generic variable ? like g_modifierKeys, g_testTags, ..... Fri, 29 Jul 2022 07:08:10 -04002022-10-07T19:54:09-04:00/Support/Forum/rapise/issues-questions/2652.aspxthreadId=2653David J (support1@inflectra.com)RAPISE SPIRA HTMLConnect to SpiraTest form RAPISE HI I want to connect to Spira from my RAPISE test. The RAPISE TEST is the same name that the SPIRATest test name. I want to get informations from the SpiraTest Test, for exemple, i need the requirements. Have u a script exemple ? (i imagine a function which have 1 parameter = the test name (ID ?) and it return a fromatted text (html table)) Fri, 29 Jul 2022 15:07:28 -04002022-07-30T08:21:43-04:00/Support/Forum/rapise/issues-questions/2653.aspxthreadId=2656David J (support1@inflectra.com)RAPISE screenshot stepRAPISE - Report Step HI I need to get the steps screenshost from the report ? Qhat is the variable used ? Thanks Mon, 01 Aug 2022 09:15:17 -04002022-08-02T19:29:53-04:00/Support/Forum/rapise/issues-questions/2656.aspxthreadId=2631Divya Hari (divya.hari.ext@midiagnostics.c)attach file logsAttach a file to a report or a test run Hi, I am new to using Rapise. We are trying to automate testing on a desktop application. Is there a way to attach a log file from the application under test to a test report in Rapise at the end of a test or a test run in SpiraTest at the end of test execution? Thanks Divya Tue, 05 Jul 2022 12:09:30 -04002022-07-05T12:59:17-04:00/Support/Forum/rapise/issues-questions/2631.aspxthreadId=2695David J (support1@inflectra.com)Row Map with more columns Is it possible to do a MAP of type ROWS with more columns than the 7 (up to H) that are present in the RVL? Thanks Tue, 18 Oct 2022 11:47:41 -04002022-10-18T19:03:20-04:00/Support/Forum/rapise/issues-questions/2695.aspxthreadId=2705David J (support1@inflectra.com)Rapise Android Java Appium Memory TimelimitsRapise on Android with Appium timeout issue? Hello, I am running a long running test on an android device. It takes a long time because our android application runs a long time... processing a lot of stuff. This is as designed. When I manually run this test on either a physical device or emulator, it runs just fine. I can process stuff along time (hours). Our app stays running indefinitely. But when I automate this using Rapise with Appium after a while our app just disappears. It doesnt appear to be crashing. What appears to be happening is that (without there being any failures triggered in the script, Appium is simply closing our application. Is there some sort of built-in time limit to how long a Rapise script can run? Appium continues running and connected to the device or emulator. I can restart the test if I want to. I have tried adjusting every wait and every delay and it doesnt seem to help. Thoughts? I had a different test, for a different android application where I discovered that eventually Appium was running out of memory and the test was aborting. But it was easy to tell this was happening by looking at the output in the Appium Console window. Thats not what is happening in this scenario. Appium keeps running and no specific Appium errors. I also tried saving a screenshot on failure, but that doesnt help. I just get a screenshot of my blank Android Desktop screen after the application was closed. Mon, 07 Nov 2022 19:12:24 -05002024-01-15T06:44:30-05:00/Support/Forum/rapise/issues-questions/2705.aspxthreadId=2706David J (support1@inflectra.com)Rapise Java Android Checking If Object ExistsRapise Android Java Problems Checking the Screen Hello, as mentioned in another thread Im testing a long-running Android Application. The Application is processing many things very quickly and while it processes them the screen of the application updates. I pausing and checking the screen every 10 seconds to see where things are at. But unfortunately sometimes the objects on the screen are right in the middle of updating and so they dont exist for a brief moment (sub 100 ms). And when an object doesnt exist it seems like your test aborts immediately. I have tried stuff like: if (SeS(title) != null) before I do my usual: if (SeS(title).GetText() == The Text Im Looking For) And that doesnt seem to help. When you call SeS(title) it throws an exception and aborts before even returning the fact that it is indeed null. Anyone have any ideas on how to get around this? Mon, 07 Nov 2022 19:22:02 -05002022-11-07T21:09:42-05:00/Support/Forum/rapise/issues-questions/2706.aspxthreadId=2707David J (support1@inflectra.com)SeSReportText Java AndroidSeSReportText doesn't put the text into report in Android, Java Hello, I wanted to put some text into my report, but SeSReportText doesnt seem to put anything into my report. This is running an Android Test using Java. I have had to resort to a hack, like Tester.AssertNotNull(The text I wanted to put into my report) which is quite silly. Does SeSReportText work at all? Maybe it works in RVL but not Java? Or maybe it is putting it into some other report, and not the one you see at the end of a Rapise test run? Mon, 07 Nov 2022 21:03:15 -05002022-11-08T01:11:47-05:00/Support/Forum/rapise/issues-questions/2707.aspxthreadId=2783Alex G (alexey.grinevich@inflectra.com)Failed to connect to Chrome when recording or executing a test Im experiencing issues when trying to record or execute tests with Chrome. I can record and run tests with any other browser, but when I try it with Chrome, I get an error message on the screen: Failed to connect to Chrome. In the out.log file, this error appears: Microsoft (R) Windows Script Host Version 5.812 Copyright (C) Microsoft Corporation. All rights reserved. SeS Recorder Starting... Rapise Version:7.4.27.74 Verbose level:1 Recording script file: C:\Users\pc\Documents\My Rapise Tests\Demo1\Main.js Recording window title: regex:.* class: regex:.* Creating a locator: HTML Creating a locator: HTML FPP started: 1681729736748 Initializing Web, g_browserLibrary=Selenium Creating a locator: UIAutomation Creating a locator: UIAutomation2 Failed to connect to: Chrome Failed to connect WebDriver Ive already checked that the webdriver and the browser are updated and compatible, and Ive also tried disabling the antivirus. Mon, 17 Apr 2023 12:24:23 -04002024-01-10T09:55:39-05:00/Support/Forum/rapise/issues-questions/2783.aspxthreadId=2790Bavatharani Shanmugam (tharanishanmugam245@gmail.com)Support for Linux and MAC OS - Desktop Application Automation Hello Team , Can you please confirm if Rapise is currently supporting for Linux and MAC - OS Desktop Application Automation or not? Thu, 18 May 2023 07:00:30 -04002023-05-18T07:11:39-04:00/Support/Forum/rapise/issues-questions/2790.aspxthreadId=2831Max K (denis.markovtsev@inflectra.com)If statements Hello, I have been learning a bit about automation and javascript. I am very much a novice so I appoligige if this question is dub. I am trying to do an if statement to verify text but I cant get it to run. Could somone advise me on how to get this working? if (Tester.AssertEqual(Verify that: Text=Log In, SeS(Log_In).GetText(), Log In) == Log In { Tester.AssertEqual(Verify that: Text=Log In, SeS(Log_Out).GetText(), Log In } else { Tester.AssertEqual(Num2, SeS(Log_Out).GetText(), Log In } Thu, 27 Jul 2023 17:24:35 -04002023-07-28T05:41:07-04:00/Support/Forum/rapise/issues-questions/2831.aspxthreadId=2885Max K (denis.markovtsev@inflectra.com)Mobile Device Testing - Mobile Settings (App) Hello, I would like to test a mobile device wich is connected on my PC via USB. APK is automatically deployed on the device an i have no access to apk-file. Its possible to configure rapise (mobile settings) with package/activity name instead app-name? Thank you Fri, 12 Jan 2024 12:52:21 -05002024-01-12T17:12:54-05:00/Support/Forum/rapise/issues-questions/2885.aspx