<description/><language>en-US</language><copyright>(C) Copyright 2006-2024 Inflectra Corporation.</copyright><managingEditor>support@inflectra.com</managingEditor><category domain="http://www.dmoz.org">/Computers/Software/Project_Management/</category><category domain="http://www.dmoz.org">/Computers/Software/Quality_Assurance/</category><generator>KronoDesk</generator><a10:contributor><a10:email>support@inflectra.com</a10:email></a10:contributor><ttl>120</ttl><item><guid isPermaLink="false">KB798</guid><author>Max K (denis.markovtsev@inflectra.com)</author><category domain="http://www.inflectra.com/kronodesk/article/tag">mobile</category><category domain="http://www.inflectra.com/kronodesk/article/tag">ionic</category><category domain="http://www.inflectra.com/kronodesk/article/tag">web</category><category domain="http://www.inflectra.com/kronodesk/article/tag">webdriver</category><category domain="http://www.inflectra.com/kronodesk/article/tag">appium</category><title>Testing mobile applications built with Ionic framework Ionic is an open source UI toolkit for building performant, high-quality mobile apps using web technologies - HTML, CSS, and JavaScript. This means that being mobile, Ionic applications are web applications by nature. And it is much more convenient to test them via WebDriver rather than Appium. Requires Rapise 8.1+. Mon, 12 Feb 2024 13:39:26 -05002024-02-12T14:17:35-05:00/Support/KnowledgeBase/KB798.aspxKB780Max K (denis.markovtsev@inflectra.com)chrome chromedriver webdriver seleniumChrome for Testing This is the mirror of https://googlechromelabs.github.io/chrome-for-testing/known-good-versions-with-downloads.json Using links from this JSON file you may download specific versions of Chrome that do not auto-update. Thu, 05 Oct 2023 10:05:51 -04002024-03-20T06:51:44-04:00/Support/KnowledgeBase/KB780.aspxKB776Max K (denis.markovtsev@inflectra.com)browser invoke sub-testHow to run a sub-test in isolated mode Sometimes there is a need to execute another test (sub-test) from a Rapise test. Doing so with Global.DoInvokeTest or RVL.DoPlayTest will run the sub-test in the context of the calling test, it will reuse same browser profile or mobile profile, it will use same loaded libraries. Such mode of execution may produce different results compared with running the sub-test standalone. To run the sub-test in isolated mode use Global.DoInvokeTestParallel and RVL.DoPlayTestParallel . Tue, 05 Sep 2023 10:05:12 -04002023-09-05T10:06:05-04:00/Support/KnowledgeBase/KB776.aspxKB774Max K (denis.markovtsev@inflectra.com)webflutterHow to automate testing of Flutter Web applications In most cases Flutter Web applications are built with CanvasKit renderer (flutter build web --web-renderer canvaskit). It means that by default UI elements of an application are not visible to test automation tools. They see just the big pane that covers all browser window. So does Rapise. However, there is a simple workaround that can be applied to solve this problem. Tue, 08 Aug 2023 14:15:55 -04002023-09-08T09:57:12-04:00/Support/KnowledgeBase/KB774.aspxKB772Max K (denis.markovtsev@inflectra.com)If you have Rapise version lower than 8.0.28.45 and Chrome 115+ Since version 115 of Chrome the central storage of chromedriver executables has changed. If you have Rapise version older than 8.0.28.45 than you need to take special steps to continue testing on Chrome 115 and above. Fri, 21 Jul 2023 07:05:15 -04002023-08-18T06:40:49-04:00/Support/KnowledgeBase/KB772.aspxKB771Max K (denis.markovtsev@inflectra.com)reportpdfhtmlHow to generate an HTML report using own template and convert it to PDF Rapise can export an execution report in HTML format, it even allows to choose from a few predefined templates . However you may want to create own template or customize existing one and export the report automatically at the end of test execution. Also you may want to convert generated HTML report to PDF format. Learn how from this article. Wed, 19 Jul 2023 06:45:46 -04002023-07-19T06:50:04-04:00/Support/KnowledgeBase/KB771.aspxKB767Max K (denis.markovtsev@inflectra.com)rapise8docsacademyRapise 8.0: how to use Rapise with Git and Spira If your team has only one or two test automation engineers, the best option for storing files of a testing framework is within SpiraTest. This approach is straightforward to implement and does not require specific configuration of test sets. However, if your testing framework is expected to grow significantly and you have multiple automation engineers, it is recommended to incorporate Git into your set of tools. Using Git offers several important benefits: Improved file loading speed: By integrating Git with RapiseLauncher, the process of loading files from a repository is significantly faster. This can save valuable time, especially when dealing with larger frameworks or complex test suites. Comprehensive source control features: Git provides a wide range of source control capabilities, including branching and merging. These features are essential for managing changes and collaborating effectively when multiple team members are working on the same codebase. It allows for better organization, tracking, and merging of code changes, ensuring a streamlined development process. Enhanced teamwork: Git simplifies collaboration in a team environment. It allows team members to work on different branches or even different features concurrently, while providing mechanisms to merge and synchronize their work seamlessly. This enables better coordination and reduces the risk of conflicts when integrating changes made by multiple developers. By incorporating Git into your testing workflow, you can optimize file loading speed, leverage powerful source control features, and foster a more efficient and collaborative team environment. Fri, 23 Jun 2023 14:02:52 -04002023-06-23T16:21:42-04:00/Support/KnowledgeBase/KB767.aspxKB765Max K (denis.markovtsev@inflectra.com)rapise8docsacademyRapise 8.0: how to use Page Objects/Modules When writing automated tests, it is often necessary to create shared modules that can be used by multiple test cases. These modules serve various purposes, such as handling authentication for applications with a login page, performing necessary actions after test case completion, or working with custom controls within the application, such as dropdown menus, form fields, or grid/table controls. In Rapise 8.0, you have the ability to address all these requirements. Rapise supports two types of modules: RVL (Rapise Visual Language) and JavaScript-based modules. These modules provide a flexible and powerful approach to handle common functionalities across your test cases. By using RVL modules, you can visually create reusable components that encapsulate specific actions or sequences of steps. For example, you can create an RVL module that handles the authentication process by entering credentials and clicking the login button. This module can then be easily reused across multiple test cases that require login functionality. Alternatively, you can leverage JavaScript-based modules in Rapise 8.0. JavaScript is a versatile programming language that allows you to create custom functions and logic to handle complex scenarios. With JavaScript-based modules, you can implement specific interactions with custom controls or perform actions that are not easily achievable through the visual interface of Rapise. Both RVL and JavaScript-based modules in Rapise provide a seamless way to organize and reuse common functionalities within your automated tests. They help improve maintainability, reduce duplication of code, and enhance overall test efficiency. Fri, 23 Jun 2023 08:48:31 -04002023-06-23T13:56:36-04:00/Support/KnowledgeBase/KB765.aspxKB760Max K (denis.markovtsev@inflectra.com)rapise8docsacademyRapise 8.0: using multiselect and datacolumn parameters for comprehensive testing The true strength of test automation lies in its capability to execute the same test cases with varying input parameters. In Rapise 8.0, you can achieve this by utilizing multiselect and datacolumn parameters. Lets now explore a specific example to illustrate this concept. Wed, 07 Jun 2023 08:06:38 -04002023-06-07T09:24:21-04:00/Support/KnowledgeBase/KB760.aspxKB756Max K (denis.markovtsev@inflectra.com)rapise8docsacademyRapise 8.0: development flow for Test Automation Framework in Team Mode When working as part of a team of automation engineers, the principles mentioned in the Single User Mode still apply. However, there are additional considerations to keep in mind, particularly when using a SpiraTest-based file repository. Fri, 19 May 2023 07:22:44 -04002023-05-22T06:31:48-04:00/Support/KnowledgeBase/KB756.aspxKB755Max K (denis.markovtsev@inflectra.com)rapise8docsacademyRapise 8.0: development flow for Test Automation Framework in Single User Mode If you are the sole automation engineer working on test creation with Rapise, it is recommended to follow these basic principles when developing a test automation framework. These guidelines specifically apply to the new Framework mode introduced in Rapise 8.0. Fri, 19 May 2023 06:35:50 -04002023-05-22T06:31:36-04:00/Support/KnowledgeBase/KB755.aspxKB753Max K (denis.markovtsev@inflectra.com)rapise8docsacademyRapise 8.0: how to make a copy of a test automation framework There are various situations where duplicating a test automation framework and linking it with another product in SpiraTest becomes necessary. For instance, you may want to create a copy to test the next major version of your application or start fresh with a clean product in SpiraTest. Another common scenario is when you need to transfer the test repository from SpiraTest to Git. Thu, 18 May 2023 13:02:51 -04002023-05-22T06:31:23-04:00/Support/KnowledgeBase/KB753.aspxKB752Max K (denis.markovtsev@inflectra.com)rapise8docsacademyRapise 8.0: how to define and use test set configurations Rapise 8.0 provides the simplified way of parameterizing test sets . With the ability to define parameters and create configurations, managing different test scenarios has never been easier. Each configuration automatically includes all the defined parameters, but you can override specific parameter values as needed. If a configuration does not explicitly assign a parameter value, the default value is utilized during test set execution. Thu, 18 May 2023 10:26:50 -04002023-05-22T06:30:11-04:00/Support/KnowledgeBase/KB752.aspxKB751Max K (denis.markovtsev@inflectra.com)rapise8academydocsRapise 8.0: what are the benefits of using the new Framework mode? The Framework mode was introduced in Rapise 8.0 to simplify test case and test set management, as well as the management of parameters, page objects/modules, object repositories, and shared code. The legacy Single Test mode required dealing with Sub-Tests and linking tests to SpiraTest on a per test case basis, whereas in the Framework mode, there is a single button labeled Sync with Spira that handles everything. When this button is pressed, test cases and test sets are automatically synchronized with SpiraTest, and files are uploaded/downloaded. In the Framework mode, team collaboration is streamlined because changes made by team members are automatically merged. In addition, it is possible to view diffs and resolve conflicts in complex cases. Wed, 17 May 2023 15:22:18 -04002023-05-22T06:30:00-04:00/Support/KnowledgeBase/KB751.aspxKB750Max K (denis.markovtsev@inflectra.com)rapise8docsacademyRapise 8.0: how to run test cases on different browsers In this article, we will demonstrate how to configure multi-browser execution of test cases in Rapise to ensure compatibility of a web application across major web browsers. This method is specifically designed for the Framework mode, which was introduced in Rapise 8.0. Wed, 17 May 2023 11:44:52 -04002023-05-22T06:29:47-04:00/Support/KnowledgeBase/KB750.aspxKB749Max K (denis.markovtsev@inflectra.com)rapise8docsacademyRapise 8.0: how to define and use parameters in test cases In test automation projects, it is often necessary to parameterize test cases for various purposes. For instance, this could involve specifying different URLs for running tests in different environments (development, staging, production), or providing user credentials for logging into the system. Additionally, there might be a need to quickly modify playback speed, error handling, and screenshot settings for multiple test cases. In the Rapise 8.0 Framework mode, managing parameters is made simple and convenient, allowing easy creation and management of parameters, including the ability to run the same test case with different input data, such as filling a form with various values to create multiple records in a system database. Mon, 15 May 2023 13:14:47 -04002023-05-22T06:29:20-04:00/Support/KnowledgeBase/KB749.aspxKB748Max K (denis.markovtsev@inflectra.com)rapise8academydocsRapise 8.0: recommended way of executing code before and after each test case Rapise 8.0 has introduced a new feature called the Framework mode. In this mode a new framework is created with the Common.js file which contains event handlers such as SeSOnTestInit and SeSOnTestFinish that get executed for every test case. Fri, 12 May 2023 10:44:59 -04002023-05-22T06:29:34-04:00/Support/KnowledgeBase/KB748.aspxKB732Max K (denis.markovtsev@inflectra.com)mobilewebseleniumappiumbitbarRun Rapise tests on Bitbar Bitbar is a browser and device farm that enables its clients to run cross-browser and mobile tests remotely. Mon, 27 Feb 2023 11:53:35 -05002023-03-06T17:04:48-05:00/Support/KnowledgeBase/KB732.aspxKB705Max K (denis.markovtsev@inflectra.com)How to switch from `Chrome HTML` to `Selenium - Chrome` browser profile Chrome extension and Chrome HTML browser profile have been deprecated. Chrome extension and Chrome HTML browser profile have been deprecated. The reason is that Google is going to remove MV2 extensions from the store . At Inflectra we decided not to migrate to MV3 extension format because it is unlikely possible due to security changes (primary reason of appearance of MV3). To make Chrome based testing possible we implemented Selenium Based Recorder . So please consider switching to Selenium - Chrome browser profile. Fri, 02 Dec 2022 12:58:45 -05002023-09-27T11:08:02-04:00/Support/KnowledgeBase/KB705.aspxKB692Max K (denis.markovtsev@inflectra.com)seleniumbrowserextensionHow to load Chrome browser extensions via Selenium profile If you need specific browser extensions for running web tests you may specify them in Selenium profile. Fri, 04 Nov 2022 08:08:13 -04002023-02-02T10:30:51-05:00/Support/KnowledgeBase/KB692.aspxKB689Max K (denis.markovtsev@inflectra.com)licenseactivation codeHow to find Rapise activation code that is used on a machine In your Customer Area on Inflectra website you have a list of Rapise activation codes. To find out which code is used on a specific machine follow these simple steps. Mon, 31 Oct 2022 12:01:43 -04002023-08-18T11:11:09-04:00/Support/KnowledgeBase/KB689.aspxKB686Max K (denis.markovtsev@inflectra.com)chromeedgeseleniumprofileHow to set permanent user profile for Selenium - Chrome/Edge profile When you are recording/running a test via Selenium browser profiles in Rapise - by default a new user profile is created when new instance of a browser is launched. It means that new browser instance starts with empty cache, no cookies, etc. Sometimes it complicates testing. If you are testing a Web application that requires SMS/Email code to authorize a browser then you will have to do it every time. Automation of input of SMS/Email codes may be really hard. It is much easier to authorize a browser manually once and then run tests for long period of time. To make it work you will need to configure a permanent user profile for the browser used for testing. Learn how to do it for Chrome/Edge from this article. Fri, 21 Oct 2022 06:58:49 -04002023-02-02T10:34:05-05:00/Support/KnowledgeBase/KB686.aspxKB683Max K (denis.markovtsev@inflectra.com)selenium download file webHow to set download folder for Selenium - Chrome profile If your Web testing scenario includes file downloading you may configure `Selenium - Chrome` profile and specify which folder to use to store downloaded files. Wed, 19 Oct 2022 10:49:30 -04002023-02-02T10:36:02-05:00/Support/KnowledgeBase/KB683.aspxKB681Victoria D (nino.diasamidze@inflectra.com)How to disable browser notifications for Selenium Chrome Some of the Web resources used for automated tests have a browsers push notifications active. However, push notifications creating unnecessary records in RVL table. Tue, 04 Oct 2022 15:45:23 -04002022-10-04T15:53:40-04:00/Support/KnowledgeBase/KB681.aspxKB675Max K (denis.markovtsev@inflectra.com)web object element screenHow to wait for Web element to disappear from screen Rapise has built-in function Navigator.DoWaitFor to wait for object to appear. If you need to do the opposite add the following function into your User.js. Tue, 20 Sep 2022 08:25:02 -04002022-09-20T08:25:02-04:00/Support/KnowledgeBase/KB675.aspxKB671Max K (denis.markovtsev@inflectra.com)attachmentHow to attach a file to a test run in Spira By default Rapise uploads all the screenshots to a test run in Spira but you may need to upload a specific file, e.g. text file or a spreadhseet. Mon, 12 Sep 2022 08:40:06 -04002023-02-02T10:39:19-05:00/Support/KnowledgeBase/KB671.aspxKB663Alex G (alexey.grinevich@inflectra.com)Scripting Drag&Drop for Web Tests This function is useful for scripting DragNDrop for web tests. Mon, 15 Aug 2022 09:37:43 -04002023-08-18T12:16:01-04:00/Support/KnowledgeBase/KB663.aspxKB661Alex G (alexey.grinevich@inflectra.com)Run Selenium - Chrome in full screen If you want your tests to run in maximized browser you need to configure the browser profile properly. Fri, 12 Aug 2022 08:02:04 -04002022-08-12T08:02:04-04:00/Support/KnowledgeBase/KB661.aspxKB655Max K (denis.markovtsev@inflectra.com)seleniumwebdrivershadowHow to work with Shadow DOM via Native Selenium API in Rapise If your scripting is style is writing JavaScript and using Native Selenium API and you wish to dig inside Shadow DOM - read this short article. Requires Rapise 7.3+ Thu, 21 Jul 2022 06:41:07 -04002022-07-21T06:42:39-04:00/Support/KnowledgeBase/KB655.aspxKB651Max K (denis.markovtsev@inflectra.com)command line cmdRunning Rapise test sets without third-party tools Recommended way of running Rapise tests on regular basis is using SpiraTest and RapiseLauncher . Other options include Azure DevOps and Jenkins . But there is also a way of running Rapise tests via command line. If this is what you are looking for then read this article. Wed, 22 Jun 2022 12:06:19 -04002023-08-18T12:38:28-04:00/Support/KnowledgeBase/KB651.aspxKB639Max K (denis.markovtsev@inflectra.com)Dismiss Safari popup on a Mobile device If you are running a web test on a mobile device via Appium then you have three options of how to accept a popup window alert. Tue, 22 Mar 2022 10:28:20 -04002023-02-02T10:43:42-05:00/Support/KnowledgeBase/KB639.aspxKB635Max K (denis.markovtsev@inflectra.com)incidentCreate an incident in Spira from Rapise test In some cases a test may automatically determine that its failure is definitely caused by a bug in software under test. In this case the test may create an incident in Spira using Spira.CreateIncident action. Requires Rapise 7.2+. Thu, 27 Jan 2022 13:01:58 -05002023-02-02T10:46:56-05:00/Support/KnowledgeBase/KB635.aspxKB634Alex G (alexey.grinevich@inflectra.com)Comparing Web Page to Text or Word File Sometimes you need to validate the whole page text. This sample demonstrates usage of plain text or MSWord file for this purpose with some help of myers-diff npm module Fri, 21 Jan 2022 08:25:08 -05002022-01-21T08:25:08-05:00/Support/KnowledgeBase/KB634.aspxKB631Alex G (alexey.grinevich@inflectra.com)Reading DOM element style property Sometimes we need to get runtime property for the element. For example, we need to get a background color to know that element is visually highlighted for a user. This topic shows how it may be done with Navigator.ExecJS. Fri, 26 Nov 2021 11:53:39 -05002021-11-26T11:53:53-05:00/Support/KnowledgeBase/KB631.aspxKB622Alex G (alexey.grinevich@inflectra.com)RapiseGet DOM element visible color Sometimes we need to get runtime property for the element. For example, we need to get a background color to know that element is highlighted for a user. You may do it with help of Navigator.ExecJs. Fri, 26 Nov 2021 11:34:41 -05002021-11-26T11:34:41-05:00/Support/KnowledgeBase/KB622.aspxKB621Alex G (alexey.grinevich@inflectra.com)RapiseGet DOM element visible color Sometimes we need to get runtime property for the element. For example, we need to get a background color to know that element is highlighted for a user. You may do it with help of Navigator.ExecJs. Fri, 26 Nov 2021 11:34:31 -05002021-11-26T11:34:31-05:00/Support/KnowledgeBase/KB621.aspxKB608Max K (denis.markovtsev@inflectra.com)spirablockedWhat Blocked status means for a Test Run When you run a test with Spira (via RapiseLauncher) you may get a `Blocked` status for a test run. It is displayed in the Test Runs view and Test Sets view both in Spira and Spira Dashboard in Rapise. Wed, 29 Sep 2021 12:03:24 -04002023-08-18T08:05:35-04:00/Support/KnowledgeBase/KB608.aspxKB603Max K (denis.markovtsev@inflectra.com)dynamics dynamics365The 2021 release wave 2 for Dynamics 365 for Sales The 2021 release wave 2 for Dynamics 365 contains hundreds of new features across Dynamics 365 applications. If you are using Rapise to test a Dynamics 365 for Sales instance you may be affected by the coming changes. To help you update existing tests we summarized differences (important for UI automation) between old and new versions of Dynamics 365 for Sales. Fri, 27 Aug 2021 13:43:11 -04002021-08-27T14:03:46-04:00/Support/KnowledgeBase/KB603.aspxKB602Max K (denis.markovtsev@inflectra.com)Auto start/stop Azure VM to run UI tests If you are using a Microsoft Azure VM to run UI tests and do not want to keep the VM always running (to save budget) you may configure automatic start/stop and auto logon for the machine. Thu, 26 Aug 2021 15:07:01 -04002021-08-26T15:07:01-04:00/Support/KnowledgeBase/KB602.aspxKB600Max K (denis.markovtsev@inflectra.com)screenshotsreportChange the default Screenshot folder If a test is configured to capture screenshots during playback - Rapise puts then into Reports folder in the working directory of the test. If you want to copy screenshots to a different location or instruct Rapise to put images into a different folder - check out this article. Fri, 18 Jun 2021 14:55:55 -04002021-06-18T15:12:17-04:00/Support/KnowledgeBase/KB600.aspxKB599Max K (denis.markovtsev@inflectra.com)rvltoolboxRVL Toolbox to boost productivity in writing tests If you are new to Rapise or use it occasionally you may not know or remember all the cool objects and actions to use in your tests. With RVL Toolbox you can get access to required information by searching for it without leaving the RVL Editor. Fri, 18 Jun 2021 09:13:06 -04002021-06-18T14:35:33-04:00/Support/KnowledgeBase/KB599.aspxKB586Max K (denis.markovtsev@inflectra.com)amazonawssecretHow to get AWS Secret from Rapise Learn how to query AWS Secret from Rapise. Requires Rapise 6.7+ Thu, 04 Feb 2021 15:01:28 -05002021-02-04T15:01:28-05:00/Support/KnowledgeBase/KB586.aspxKB585Max K (denis.markovtsev@inflectra.com)amazonseleniumcross-browserHow to run cross-browser tests on AWS Device Farm Learn how to configure Rapise to run cross-browser tests on AWS Device Farm. Requires Rapise 6.7+ Thu, 04 Feb 2021 14:32:58 -05002021-02-04T15:02:15-05:00/Support/KnowledgeBase/KB585.aspxKB584Max K (denis.markovtsev@inflectra.com)antivirusRapise and Microsoft Defender Antivirus If you use Microsoft Defender Antivirus to protect your system then you may need to perform certain steps to use Rapise effectively. Wed, 03 Feb 2021 18:38:00 -05002021-02-03T18:38:00-05:00/Support/KnowledgeBase/KB584.aspxKB583Max K (denis.markovtsev@inflectra.com)antivirusRapise and Avast Antivirus If you use Avast Antivirus to protect your system then you may need to perform certain steps to install and use Rapise. Wed, 27 Jan 2021 08:48:08 -05002021-01-27T08:48:08-05:00/Support/KnowledgeBase/KB583.aspxKB569Alex G (alexey.grinevich@inflectra.com)Making Negative API Tests By default Rapise reports an error when REST service request fails. With the negative test the request should fail, so we want the reporting to behave differently. Tue, 13 Oct 2020 14:16:30 -04002020-10-13T14:16:30-04:00/Support/KnowledgeBase/KB569.aspxKB568Max K (denis.markovtsev@inflectra.com)test management rename cloneHow to rename a Rapise test linked to a Spira Test Case It is a 3 step process: 1. SaveAs or Clone the test with a new name 2. Save it to Spira 3. Delete old test copy from Documents module in Spira (optional) Mon, 12 Oct 2020 12:44:47 -04002023-08-17T15:07:57-04:00/Support/KnowledgeBase/KB568.aspxKB556Max K (denis.markovtsev@inflectra.com)RapiseChromeExtension version 3 Along with Rapise 6.5 we are releasing an update to the RapiseChromeExtension. The new version (v3) is back compatible. It means that older versions of Rapise should work with it without issues. Rapise 6.5+ will require you to update the extension if you have RapiseChromeExtension v2. Tue, 14 Jul 2020 09:54:39 -04002020-07-14T09:54:39-04:00/Support/KnowledgeBase/KB556.aspxKB555Max K (denis.markovtsev@inflectra.com)Recording Web and Desktop actions into the same test Starting from Rapise 6.5 you may record both Web and Desktop actions into the same test. Tue, 14 Jul 2020 09:46:39 -04002023-08-17T14:18:24-04:00/Support/KnowledgeBase/KB555.aspxKB553Max K (denis.markovtsev@inflectra.com)Basic authentication in Web tests Legacy Web applications still may use basic authentication. So when you navigate to an application URL the browser shows a dialog with Username and Password fields to enter. The content of this dialog is not a Web content so recording and playback in a Web test will not work. Mon, 13 Jul 2020 12:34:12 -04002020-07-13T12:37:23-04:00/Support/KnowledgeBase/KB553.aspxKB551Max K (denis.markovtsev@inflectra.com)webspyxpathSearching for a Web element by text that contains non-breaking spaces Are you writing XPath to find an element using its inner text but it does not work? Most likely the text contains non-breaking spaces. This situation is described in detail in our UI Test Automation Playground . Tue, 30 Jun 2020 17:01:18 -04002020-06-30T17:03:05-04:00/Support/KnowledgeBase/KB551.aspxKB543Max K (denis.markovtsev@inflectra.com)propertiesparametersRapiseLauncherlauncherValues passed from RapiseLauncher to Rapise When a test is executed by RapiseLauncher it may access key properties of the test run, custom test set properties and test case parameters. Requires Rapise 6.4.19.16+ Mon, 01 Jun 2020 12:30:19 -04002023-06-15T08:15:08-04:00/Support/KnowledgeBase/KB543.aspxKB541Max K (denis.markovtsev@inflectra.com)tinymcerichtextAutomating TinyMCE 2020 The world moves forward and our older KB articles related to TinyMCE became outdated. In this article we present a modern way (as of year 2020) of automating TinyMCE controls. Thu, 21 May 2020 16:10:41 -04002020-05-21T16:10:41-04:00/Support/KnowledgeBase/KB541.aspxKB533Max K (denis.markovtsev@inflectra.com)screenshotserrorMake screenshots on failure only Automatic screenshots on every test step may occupy too much space. Learn how to make a screenshot on failure only. Thu, 07 May 2020 12:16:13 -04002023-08-17T11:55:07-04:00/Support/KnowledgeBase/KB533.aspxKB532Max K (denis.markovtsev@inflectra.com)profile browsermobileHow to set path for local browser and mobile profiles Since version 6.3 Rapise has support for local browser and mobile profiles. Using it you may package browser profiles along with tests. What if you want to reuse browser profiles between different projects? Or have sets of profiles for different situations? You may now set path to profile directory using a special global variable. Supported in Rapise 6.4+ Mon, 04 May 2020 18:01:59 -04002020-05-04T18:01:59-04:00/Support/KnowledgeBase/KB532.aspxKB529Max K (denis.markovtsev@inflectra.com)gotomeetingsupportzoomUsing Zoom/GoToMeeting for Support Session Learn how to connect to a support session and how to enable Rapise Expert to remotely control your Rapise instance. Fri, 10 Apr 2020 14:11:00 -04002022-06-29T11:44:23-04:00/Support/KnowledgeBase/KB529.aspxKB526Max K (denis.markovtsev@inflectra.com)recordingweburlHow to disable recording URLs When you do recording of test steps for a Web application - Rapise by default captures page URLs and stores them in the object repository. Learn how to disable URL recording from this article. Requires Rapise 6.4+ Mon, 30 Mar 2020 09:34:51 -04002023-08-17T10:41:19-04:00/Support/KnowledgeBase/KB526.aspxKB508Max K (denis.markovtsev@inflectra.com)imageImageWrapperCompare Images in JavaScript To compare images in JavaScript you may use Tester.AssertImage . Tue, 04 Feb 2020 10:35:22 -05002020-02-04T10:36:13-05:00/Support/KnowledgeBase/KB508.aspxKB506Max K (denis.markovtsev@inflectra.com)dynamicxpathlocatorparameterHow to define and use a dynamic Web locator Imaging you have a table with dynamic data on the page. It is not possible to learn every cell. But it is possible to parameterize the locator of a cell and access cells you need during test playback. Thu, 16 Jan 2020 13:41:52 -05002020-01-16T13:46:24-05:00/Support/KnowledgeBase/KB506.aspxKB503Alex G (alexey.grinevich@inflectra.com)xpath css svgAccessing svg elements via XPath or CSS By default straight forward XPath to SVG primitives will not work. So XPath ending like .../svg[2]/path will fail. Here is a workaround. Tue, 24 Dec 2019 09:57:20 -05002023-08-17T09:49:30-04:00/Support/KnowledgeBase/KB503.aspxKB499Max K (denis.markovtsev@inflectra.com)browserseleniumsizewidthheightHow to set size of a browser window To ensure that web tests always run on a browser window of a specific size you may use different techniques. Wed, 04 Dec 2019 08:42:04 -05002019-12-04T09:22:31-05:00/Support/KnowledgeBase/KB499.aspxKB489Max K (denis.markovtsev@inflectra.com)Headless Firefox Testing Firefox 56+ supports headless mode on Windows. You can use it to Run Rapise tests via Selenium integration. Mon, 14 Oct 2019 18:05:43 -04002021-12-16T11:23:00-05:00/Support/KnowledgeBase/KB489.aspxKB482Max K (denis.markovtsev@inflectra.com)NavigatorExecJSDOMHTMLObjectHTMLHow to get contents of the HEAD element in a DOM In this article we will get contents of the HEAD element to get the links to all referenced stylesheets. It may be useful if you plan to verify that a set of CSS did not change for a page. Fri, 27 Sep 2019 06:38:50 -04002019-09-27T07:39:44-04:00/Support/KnowledgeBase/KB482.aspxKB475Alex G (alexey.grinevich@inflectra.com)How to Get All Links on the Page with Rapise Sometimes you need to go through all links to check something. Here are two ways: JS and RVL of doing it with Rapise. Tue, 27 Aug 2019 11:59:35 -04002023-08-16T16:22:31-04:00/Support/KnowledgeBase/KB475.aspxKB470Max K (denis.markovtsev@inflectra.com)powershellHow to run a PowerShell script in Rapise test To run a PowerShell script use Global.DoLaunch action. Mon, 29 Jul 2019 12:24:32 -04002019-07-30T12:00:35-04:00/Support/KnowledgeBase/KB470.aspxKB465Max K (denis.markovtsev@inflectra.com)visibilityelementHow to check if web element is really visible on screen Checking if element is visible on screen may be a tricky task. Its usually not a problem in manual testing but there are nuances when you do test automation. Wed, 19 Jun 2019 14:08:43 -04002023-08-16T15:47:04-04:00/Support/KnowledgeBase/KB465.aspxKB462Max K (denis.markovtsev@inflectra.com)selectoptionverifyHow to check if a web dropdown element has specific option or not If a test needs to verify existence or absence of a specific option in a dropdown you can do it via a simple function presented below. Thu, 23 May 2019 11:45:42 -04002019-05-23T11:45:42-04:00/Support/KnowledgeBase/KB462.aspxKB458Max K (denis.markovtsev@inflectra.com)How to start Rapise Launcher on Windows Boot Windows may reboot because of various reasons. If you use a machine to run Rapise tests on regular basis than you want RapiseLauncher to be started automatically after system reboot. Thu, 16 May 2019 12:53:40 -04002023-08-16T15:36:37-04:00/Support/KnowledgeBase/KB458.aspxKB457Max K (denis.markovtsev@inflectra.com)recordingplaybackcustom code functionvariableHow to organize custom code in User.js Every test has a User.js file and it is a place to put custom code and functions. This code must follow a few rules. Thu, 16 May 2019 11:53:40 -04002019-05-16T11:54:45-04:00/Support/KnowledgeBase/KB457.aspxKB453Max K (denis.markovtsev@inflectra.com)absoluterelativepathworking directoryWorking Directory of a Test and Relative Paths When Rapise starts execution of a test, it sets working directory. If a test refers to a file using a relative path then the absolute path is calculated using the working directory. Wed, 08 May 2019 15:58:28 -04002023-08-16T15:28:20-04:00/Support/KnowledgeBase/KB453.aspxKB448Max K (denis.markovtsev@inflectra.com)xpathnavigatorbrowserHow to create a Rapise web object from XPath In some cases it may be convenient to construct Rapise Objects dynamically rather than capture in advance with record/learn . In Web tests you can do it via Navigator.Find and Navigator.SeSFind . Thu, 25 Apr 2019 09:27:51 -04002023-08-16T15:24:21-04:00/Support/KnowledgeBase/KB448.aspxKB446Max K (denis.markovtsev@inflectra.com)Getting browser console logs In some cases it may be useful to analyze browser-side logs. For example, if you are using Navigator.ExecJS action. Wed, 17 Apr 2019 06:17:54 -04002019-04-17T06:17:54-04:00/Support/KnowledgeBase/KB446.aspxKB444Max K (denis.markovtsev@inflectra.com)How to get title of a window In this short topic we describe how to get the value of a window title. The way depends on the application type. Mon, 15 Apr 2019 10:07:22 -04002019-04-15T10:07:22-04:00/Support/KnowledgeBase/KB444.aspxKB436Max K (denis.markovtsev@inflectra.com)toastHandling Toast Messages The toast message is like an alert box that is only shown for a couple of seconds when something happens (i.e. when the user clicks on a button, submits a form, etc.). This article describes how to deal with toast messages in Rapise. Wed, 27 Mar 2019 14:39:37 -04002019-03-27T14:43:28-04:00/Support/KnowledgeBase/KB436.aspxKB434Alex G (alexey.grinevich@inflectra.com)How to Send Special Keys to Selenium Targets Sometimes you need to press Tab, Return, Backspace to the web page. Here is how you may do it through WebDriver. Fri, 22 Mar 2019 08:24:29 -04002023-08-16T14:20:09-04:00/Support/KnowledgeBase/KB434.aspxKB432Max K (denis.markovtsev@inflectra.com)excelspreadsheetwrite dataWriting data to an Excel spreadsheet In this article we describe how to write data to an external Excel spreadsheet during test playback. Both RVL and JavaScript examples are given. Fri, 15 Mar 2019 07:17:41 -04002019-03-15T07:17:41-04:00/Support/KnowledgeBase/KB432.aspxKB431Alex G (alexey.grinevich@inflectra.com)Multiple Object Locators Sometimes object location is unstable. The same object may be identified by different location path or XPath depending on application version or state. Sat, 09 Mar 2019 19:43:14 -05002019-03-11T07:31:47-04:00/Support/KnowledgeBase/KB431.aspxKB428Max K (denis.markovtsev@inflectra.com)relearnlocationHow to relearn an object If an object can not be found at playback and it is obvious that object location has changed because of application update (differs from the case when location is dynamic!) then the best way to fix the test is simply relearn the object. Wed, 20 Feb 2019 16:55:48 -05002019-02-20T16:55:48-05:00/Support/KnowledgeBase/KB428.aspxKB422Max K (denis.markovtsev@inflectra.com)How to save/load DOM tree in Web Spy Better to see something once than to hear about it a thousand times. If a Web element can not be found on the page using given XPATH expression and you do not know why - you have an option to save the DOM tree of the page and ask someone else with Rapise for assistance. Here is how. Mon, 21 Jan 2019 13:01:49 -05002020-05-05T16:07:52-04:00/Support/KnowledgeBase/KB422.aspxKB420Alex G (alexey.grinevich@inflectra.com)Firefox 64 Compatibility Once you have your Firefox updated to version 64 Rapise may have problems connecting to it. Here is a quick workaround until new release of Rapise addressing the problem shows up. Fri, 18 Jan 2019 04:17:50 -05002019-01-18T04:18:43-05:00/Support/KnowledgeBase/KB420.aspxKB417Max K (denis.markovtsev@inflectra.com)selenium webdriverHow to manipulate browser cookies using Selenium API in Rapise If you run Rapise tests via Selenium WeDriver you may need to manipulate browser cookies. Learn how from this post. Fri, 28 Dec 2018 14:34:51 -05002023-08-16T12:23:53-04:00/Support/KnowledgeBase/KB417.aspxKB407Max K (denis.markovtsev@inflectra.com)selenium webdriverHow to emulate keyboard and mouse via Selenium API in Rapise Though Rapise can execute its native recorded tests via WebDriver - some users prefer to write their tests in pure Selenium API. In this post we describe how to perform complex mouse and keyboard sequences via Selenium API in Rapise tests. Wed, 28 Nov 2018 13:30:54 -05002022-12-02T13:39:13-05:00/Support/KnowledgeBase/KB407.aspxKB406David J (support1@inflectra.com)rapise installation start pageRapise Start Page Layout Does Not Display Correctly Sometimes when you first install and open Rapise, the Start Page does not display correctly. This article explains the cause and solution to fix the issue. Fri, 23 Nov 2018 13:44:11 -05002018-11-23T13:44:11-05:00/Support/KnowledgeBase/KB406.aspxKB393Alex G (alexey.grinevich@inflectra.com)RapiseDoClick() vs DoClick(x,y) When doing mouse click from Rapise it is sometimes need to use offset coordinates. You will learn: 1. When explicit coordinates are needed 2. How to determine them Thu, 11 Oct 2018 08:02:23 -04002023-08-16T11:53:39-04:00/Support/KnowledgeBase/KB393.aspxKB387David J (support1@inflectra.com)rapise intellisense activex code completion javascriptDisplay Intellisense for ActiveX and .NET Objects Sometimes when you are using Rapise, you have to use external ActiveX or .NET objects to perform specific actions. You can get Rapise to display intellisense for those objects. Mon, 24 Sep 2018 17:46:41 -04002018-09-24T17:46:41-04:00/Support/KnowledgeBase/KB387.aspxKB377Max K (denis.markovtsev@inflectra.com)How to find an object in the object tree A test may contain a lot of objects. If you want to locate an object in the object tree you may use the filter box. Wed, 05 Sep 2018 13:44:24 -04002023-08-16T10:13:20-04:00/Support/KnowledgeBase/KB377.aspxKB376Max K (denis.markovtsev@inflectra.com)What is object Location? When you record a test Rapise captures UI elements with which you interact and adds them as objects to the Object Tree of a test. Each object has a Type (Button, Text, Label, Tree, Grid, ...) and Location. Rapise uses Location attribute of an object to find it in the application during test execution. Tue, 04 Sep 2018 12:29:10 -04002018-09-04T12:31:34-04:00/Support/KnowledgeBase/KB376.aspxKB375Max K (denis.markovtsev@inflectra.com)How to check that Rapise can find an object on screen When you execute a recorded test, sometimes, Rapise may not find some object on screen and display Object is not found error message in the report. If you see that the object is visible you can check if Rapise can find it or not without running the test. Tue, 04 Sep 2018 11:41:28 -04002018-09-12T18:44:06-04:00/Support/KnowledgeBase/KB375.aspxKB372Max K (denis.markovtsev@inflectra.com)exceltablegridsoreadsheetHow to save content of a table/grid into a spreadsheet file If you need to make a copy of data in a Table/Grid object - you may simply save it to Excel file with a single function call. Wed, 15 Aug 2018 17:47:33 -04002018-08-15T17:47:33-04:00/Support/KnowledgeBase/KB372.aspxKB364Max K (denis.markovtsev@inflectra.com)scrollingviewportdisplayHow to ensure that a web element is visible before interacting with it? Sometimes an element on a web page may be invisible because it is out of a viewport. Real user scrolls a page vertically and horizontally to reach such an element. How to achieve same behavior with Rapise? Tue, 24 Jul 2018 06:34:12 -04002023-08-16T09:14:44-04:00/Support/KnowledgeBase/KB364.aspxKB363Max K (denis.markovtsev@inflectra.com)webprofilexpathHow to define a profile for Web Application in Rapise Each web application is unique in terms of assigning attributes to elements and this complicates the process of generating XPath locators. Some applications assign dynamic IDs to elements, some use ARIA attributes and some do not, some values of class attribute have meaning related to element position and some just used for styling . There are also cases when an app contains hidden DOM layers which stack on top of each other. So usage of same set of attributes for generating XPath is not efficient and may lead to weak locators that break after application reloading or slight modification. To cope with these problems Rapise introduces Web App Profile. It is a simple JSON file of a defined structure that instructs Rapise how to build XPath for elements in a particular application. From this article you will learn how to define a profile for your web application. Fri, 20 Jul 2018 06:23:45 -04002023-08-16T09:11:25-04:00/Support/KnowledgeBase/KB363.aspxKB362Max K (denis.markovtsev@inflectra.com)dynamicsframeworkunified service deskHow to automate testing of Unified Service Desk for Microsoft Dynamics 365 Unified Service Desk (USD) is a hybrid application. It is a windows desktop application with embedded browser components. Follow this guide to setup a test automation framework for USD. Wed, 18 Jul 2018 18:10:08 -04002018-07-19T12:15:09-04:00/Support/KnowledgeBase/KB362.aspxKB361David J (support1@inflectra.com)angular angularjs web testing rapise text boxText Validation Does Not Always Fire on Angular4 Application Sometimes when you are testing an application written in Angular 4, the text box will not accept a value that is correct during playback (e.g. zip code is not in the right format) when you use DoSetText to set the value. Wed, 18 Jul 2018 11:09:48 -04002022-03-23T16:54:40-04:00/Support/KnowledgeBase/KB361.aspxKB359David J (support1@inflectra.com)rapise chrome firefox web extensionsHow to Install the Chrome and Firefox Extensions Offline By default, when you want to use Rapise to record and playback web tests using either Chrome or Firefox, you simply go to the appropriate web browser store and install the extension directly from the store . However sometimes you are testing web applications on a machine with no Internet Connectivity. Mon, 09 Jul 2018 18:47:05 -04002021-07-01T12:21:05-04:00/Support/KnowledgeBase/KB359.aspxKB358Max K (denis.markovtsev@inflectra.com)seleniumchromeHow to disable "Chrome is being controlled by automated test software" message When you run a test with Selenium - Chrome profile the browser is launched with a warning message below the address bar. It can be disabled. Wed, 04 Jul 2018 11:04:40 -04002023-02-22T14:40:16-05:00/Support/KnowledgeBase/KB358.aspxKB357Max K (denis.markovtsev@inflectra.com)spreadsheetexceldata-drivenddtData-driven testing with spreadsheets and RVL Many test automation scenarios require performing same steps with different data. For example, login into application with different user credentials, or enter several lines of a sales order into a table. This is data-driven testing. From this article you will learn how to do this in Rapise Visual Language (RVL) and JavaScript modes. You will also learn how to define data within a test and in external spreadsheet. Mon, 02 Jul 2018 14:09:11 -04002023-08-15T18:16:34-04:00/Support/KnowledgeBase/KB357.aspxKB353David J (support1@inflectra.com)rapise fonts installationRapise Doesn't Launch Because of Missing Windows Fonts If you dont have some of the standard Window fonts installed (e.g. Courier New), when you try and launch Rapise, it will fail to open correctly. This article provides information on the problem and solution. Wed, 27 Jun 2018 18:35:52 -04002018-06-28T14:37:39-04:00/Support/KnowledgeBase/KB353.aspxKB352David J (support1@inflectra.com)rapise user functions scenariodConverting Recorded Steps into Functions/Scenarios You have recorded some basic test scripts in Rapise, and now you want to easily extract the steps into a reusable function that can be called from the main test script. This article explains how you can do this for both RVL and JavaScript based tests. Tue, 26 Jun 2018 03:21:02 -04002023-08-15T17:47:04-04:00/Support/KnowledgeBase/KB352.aspxKB351Max K (denis.markovtsev@inflectra.com)windows 10How to automatically enter user credentials into Windows Security dialog on Windows 10 Some test scenarios require running processes as different user or entering user credentials into Internet Explorer security prompt. Rapise can enter user credentials into Windows Security dialog on Windows 10 automatically. Mon, 25 Jun 2018 19:00:49 -04002023-08-15T17:41:35-04:00/Support/KnowledgeBase/KB351.aspxKB349Max K (denis.markovtsev@inflectra.com)dynamics navdynamics 365business centralRecording tips for Dynamics NAV 2017 Web Client and Dynamics 365 Business Central Dynamics 365 Business Central is a successor of Dynamics NAV 2017 Web Client. Both solutions were built by Microsoft using same technology though they have a few differences. Rapise includes a library DomDynamicsNAV which makes test recording and playback of Dynamics NAV web clients a pleasant thing. From this post you will learn basics of recording a reliable test for these solutions as well as test playback troubleshooting methods. Well use Dynamics 365 Business Central as system under test. Wed, 06 Jun 2018 06:38:18 -04002018-06-06T17:59:16-04:00/Support/KnowledgeBase/KB349.aspxKB339David J (support1@inflectra.com)logs support rapise loggingWhere does Rapise log errors? Sometimes when you are using Rapise, you see an error on the screen, or something doesnt work as expected. In that case, our support team will need a copy of the log file that is likely to contain the error message. This article explains how to get that log file. Fri, 27 Apr 2018 13:55:49 -04002023-08-18T07:08:10-04:00/Support/KnowledgeBase/KB339.aspxKB336Max K (denis.markovtsev@inflectra.com)flakyunstableWays to deal with flaky tests When you do UI test automation and create a big enough test coverage the probability of having certain portion of flaky tests increases. In many cases there is no reasonable way in terms of time and resources to mitigate all flakiness from the test coverage. In some cases even a flaky test may still be useful. Wed, 11 Apr 2018 17:32:40 -04002021-06-11T12:55:15-04:00/Support/KnowledgeBase/KB336.aspxKB334Max K (denis.markovtsev@inflectra.com)browserprivateincognitowebHow to launch a browser in private mode? In some cases it makes sense to launch a browser in private mode to ensure exact same conditions every time you run a test. This helps to cope with such things as remembered accounts or pending sessions not disconnected by a previous test. Learn how to properly adjust browser profiles from this article. Mon, 02 Apr 2018 15:27:27 -04002023-08-15T14:20:33-04:00/Support/KnowledgeBase/KB334.aspxKB333David J (support1@inflectra.com)rapise chrome firefox extensions addonsInstalling Rapise Browser Extensions without Internet Access Normally you can install the add-ons for Chrome and Firefox directly from the browsers app store (just search for Rapise). This is the easiest option, and avoids the need to run the browsers in developer mode. Fri, 09 Mar 2018 21:11:01 -05002021-06-30T09:41:18-04:00/Support/KnowledgeBase/KB333.aspxKB323David J (support1@inflectra.com)web testing responsive design mobile website browser sizeHow to launch a web browser in Rapise with a specific size Sometimes when recording a test against a mobile responsive web site, it is useful to be able to record on the local browser (before playing it back against a cloud service such as SauceLabs, Browserstack, etc.). However you want to always record using a specific browser window size. Tue, 30 Jan 2018 19:47:16 -05002023-08-17T15:16:27-04:00/Support/KnowledgeBase/KB323.aspxKB322Max K (denis.markovtsev@inflectra.com)browserstack selenium cross-browser androidHow to run cross-browser tests on BrowserStack BrowserStack enables testing of your website for cross browser compatibility on real browsers. Instant access to multiple desktop and mobile browsers. Learn how to configure Selenium profiles in Rapise to enable connection to BrowserStack services. Requires Rapise 5.3+ Tue, 30 Jan 2018 11:34:46 -05002023-02-22T14:09:42-05:00/Support/KnowledgeBase/KB322.aspxKB318David J (support1@inflectra.com)rapise antivirus installationTroubleshooting the "The Pipe is being Closed" Error during Rapise Installation Sometimes when you try and install Rapise, you will see the error message The Pipe is Being Closed, this article provides some solutions for this message. Mon, 22 Jan 2018 15:41:29 -05002018-01-22T15:46:11-05:00/Support/KnowledgeBase/KB318.aspxKB313Max K (denis.markovtsev@inflectra.com)Salesforce VisualforceTesting Visualforce components in Salesforce Visualforce is the component-based user interface framework for the Force.com platform. Visualforce components can be tested with Rapise just like default Salesforce interface. Wed, 10 Jan 2018 14:05:30 -05002019-02-05T12:43:25-05:00/Support/KnowledgeBase/KB313.aspxKB289Alex G (alexey.grinevich@inflectra.com)How Object Recognition Works in Rapise This article contains of overview of object recognition by UI automation tools in general and its implementation in Rapise in particular. Wed, 13 Sep 2017 10:23:39 -04002023-08-15T12:10:50-04:00/Support/KnowledgeBase/KB289.aspxKB288Alex G (alexey.grinevich@inflectra.com)Search by Name, Text, XPath or Attribute on the Web Page It is common task to search for an element by its text. In some cases it is the fastest way to find one. This approach works in web browsers and selenium targets. Tue, 12 Sep 2017 18:28:08 -04002023-08-15T12:00:45-04:00/Support/KnowledgeBase/KB288.aspxKB282Max K (denis.markovtsev@inflectra.com)xpath webElastic XPATH Expressions When working on UI test automation for a web application a test engineer has to deal with XPATH expressions. They are used to locate UI elements during test execution. It is very important to use such XPATH expressions that do not break when developers update the application. Good XPATH expressions which still find required elements after UI modification can be referred to as resilient or elastic. In this article well consider several examples of elastic XPATH expressions. Thu, 31 Aug 2017 11:34:45 -04002023-11-02T13:56:01-04:00/Support/KnowledgeBase/KB282.aspxKB280Max K (denis.markovtsev@inflectra.com)appium selenium mobile cross-browser ios androidHow to specify Selenium or Appium capabilities which are not available through Rapise UI? From this article you will learn how to pass additional parameters to Selenium or Appium target, even if they can not be specified in a profile. This recipe can be also used to override parameters of a profile right from a test code. Requires Rapise 5.3+ Tue, 22 Aug 2017 15:31:44 -04002019-09-25T12:31:19-04:00/Support/KnowledgeBase/KB280.aspxKB279Max K (denis.markovtsev@inflectra.com)appium selenium mobile cross-browser ios androidHow to run cross-browser and mobile tests on Sauce Labs? Sauce Labs allows users to run tests in the cloud on different combinations of browser and OS versions as well as mobile devices and emulators. Learn how to configure Selenium and Mobile profiles in Rapise to enable connection to Sauce Labs services. Requires Rapise 5.3+ Tue, 22 Aug 2017 15:06:30 -04002023-08-15T09:23:58-04:00/Support/KnowledgeBase/KB279.aspxKB278Max K (denis.markovtsev@inflectra.com)mobile cross browser selenium appium android iosHow to run a cross-browser test on a mobile device? Lets assume you have a cross-browser test which was created on desktop and can be successfully executed on any desktop browser (Chrome, Firefox, Internet Explorer, Safari). You want to execute this test on your mobile devices or emulators. Learn how from this article. Requires Rapise 5.3+ Tue, 22 Aug 2017 14:19:39 -04002017-08-22T16:42:38-04:00/Support/KnowledgeBase/KB278.aspxKB277Max K (denis.markovtsev@inflectra.com)dynamics crm dynamics 365Tips & Tricks for Rapise and Dynamics 365 for Sales Essential information to get started with testing Dynamics 365 for Sales. Thu, 17 Aug 2017 11:51:38 -04002023-08-15T09:09:46-04:00/Support/KnowledgeBase/KB277.aspxKB272David J (support1@inflectra.com)microsoft dynamics dynamics ax dynamics crm dynamics 365 dynamics navMicrosoft Dynamics Solutions - Which One Do You Have? As described in a recent article, Microsoft Dynamics has been going through major changes in the past year , there are now many different products that all bear the Microsoft Dynamics brand, including older legacy tools such as Dynamics AX, NAV, GP, SL and CRM and the new Dynamics 365 platform which has different modules (Sales, Operations, etc.). This article helps you know which tool you have when you need help from our Rapise support team. Thu, 03 Aug 2017 18:46:40 -04002019-02-28T06:39:58-05:00/Support/KnowledgeBase/KB272.aspxKB271Max K (denis.markovtsev@inflectra.com)chromeheadlessHeadless Chrome Testing Headless Chrome on Windows is introduced in version 60 . Learn how to configure Rapise to run cross-browser tests using non-GUI mode of Chrome. Wed, 02 Aug 2017 12:05:38 -04002021-12-16T11:27:37-05:00/Support/KnowledgeBase/KB271.aspxKB269David J (support1@inflectra.com)rapise slowing down playback waitingDifferent Ways of Slowing Down Rapise to Handle Slow Applications We often get requests for ways to slow down the playback speed of Rapise so that the application under test (AUT) has time to respond. This article describes the different ways and provides suggestions as to when you should use each one. Tue, 01 Aug 2017 20:26:16 -04002023-08-15T08:37:51-04:00/Support/KnowledgeBase/KB269.aspxKB249David J (support1@inflectra.com)javascript rapise scripting resourcesResources for Learning JavaScript One of the most popular programming languages in the world is JavaScript. Initially conceived by Netscape as a web page scripting language, christened JavaScript to leverage the popularity of Java (which was fairly new and sexy at the time) and now used for servers (NodeJS), desktop apps (ReactNative) and for us at Inflectra, the core technology at the heart of our Rapise test automation system. This article provides some useful resources for those first learning the language. Thu, 30 Mar 2017 17:51:16 -04002023-08-15T07:37:55-04:00/Support/KnowledgeBase/KB249.aspxKB233David J (support1@inflectra.com)silent methods privacy sensitive data loggingSuppressing Text in Rapise Logs for Sensitive Data A customer had a question - is there a way to suppress the DoSetText or DoSendkeys methods from sending their text to the logs. They didnt want users to see this text in the Rapise (and SpiraTest) logs because they contained sensitive information (e.g. passwords). Wed, 25 Jan 2017 05:00:00 -05002023-08-15T10:13:53-04:00/Support/KnowledgeBase/KB233.aspxKB232David J (support1@inflectra.com)web testing tips rapise automated testingRapise Tip - How to Handle a Webpage that Displays an Alert when You Navigate Away One of our users had a webpage with a form. When it was submitted partially filled, the page came back (after being processed on the backend) with some errors about incomplete form. If the user tried to navigate away from this page via a link (or close the page/browser tab) he was prompted with browsers standard Are you sure you want to leave this page? dialog. He needed a way for Rapise to handle this popup when recording and playing back the web test. Wed, 18 Jan 2017 05:00:00 -05002023-08-15T10:30:10-04:00/Support/KnowledgeBase/KB232.aspxKB231David J (support1@inflectra.com)obsoleteadobe air flex flashAdobe Flash / Flex / AIR Support in Rapise Rapise 4.0 supports the testing of Adobe AIR Flex applications using the Adobe Integrated Runtime (AIR). Rapise can test applications using a wide variety of different Flex controls and supports testing both Flex 3 and Flex 4 applications. Rapise 4.0 supports the testing of Adobe Flex applications that are executed by the Adobe Flash Player inside the Internet Explorer, Mozilla Firefox or Google Chrome web browsers. Rapise can test applications using a wide variety of different Flex controls and supports testing both Flex 3 and Flex 4 applications. [We have depreciated support for testing Adobe Flex/Flash applications in Rapise 5.0 and later, so this article is provided for use by existing customers] Sun, 15 Jan 2017 05:00:00 -05002023-08-15T10:34:09-04:00/Support/KnowledgeBase/KB231.aspxKB230David J (support1@inflectra.com)ie automated testing web testingUnusual case where Rapise Cannot Click on Hyperlinks in IEWe have found an occasional situation where Rapise is not able to click on hyperlinks ( tags) when you playback a test on IE. The same test works fine on other computers and on other browsers on the same computer. Tue, 10 Jan 2017 21:22:04 -05002017-01-10T21:22:04-05:00/Support/KnowledgeBase/KB230.aspxKB228David J (support1@inflectra.com)ie html zero size xpathWeb Object Not Found in IE when Object has 0px Size We had a customer with a problem related to having elements with complex display styles applied inside an HTML anchor tag . The anchor tag was reporting back as having zero size (0px) in IE, so when Rapise tried to locate it to click on it, the browser was not able to find it. Mon, 19 Dec 2016 05:00:00 -05002023-08-15T10:38:06-04:00/Support/KnowledgeBase/KB228.aspxKB224David J (support1@inflectra.com)web testing popups IE Internet ExplorerTesting Popup Windows using Internet Explorer When you are testing a web application that has popup windows (where the popup is a whole new browser window) you will need to make a slight change to the test script to enable it to playback successfully in Internet Explorer (no change is needed for Chrome or Firefox). Thu, 27 Oct 2016 04:00:00 -04002023-08-15T10:42:12-04:00/Support/KnowledgeBase/KB224.aspxKB221David J (support1@inflectra.com)debugging scriptingWhere do I get the Microsoft Script DebuggerWhen you install Rapise onto a computer that does not have Visual Studio or the Microsoft Script Debugger installed you will get a message to install the debugger. This article provides the download link to the necessary debugger. Thu, 22 Sep 2016 04:00:00 -04002016-09-22T18:37:00-04:00/Support/KnowledgeBase/KB221.aspxKB219David J (support1@inflectra.com)obsoletecross frames web testing security domWhat to do When Rapise Doesn't Display the Web Page DOM? Sometimes when testing certain web applications instead of the browser DOM tree appearing you will see strange results such as Node0 appearing. This is caused by the application using nested frames with potentially different security origins. This article describes some of the common issues and describes the solution. Fri, 02 Sep 2016 04:00:00 -04002023-08-15T12:27:38-04:00/Support/KnowledgeBase/KB219.aspxKB217David J (support1@inflectra.com)alllibraries file paths missing junctionsRapise - Cannot Find AllLibraries.json file during Recording/Playback When recording or playing back a test script on a new PC you may get an error message that Rapise cannot find the path to AllLibraries.json.This article provides instructions on how to fix the issue. Mon, 29 Aug 2016 04:00:00 -04002023-08-11T13:53:56-04:00/Support/KnowledgeBase/KB217.aspxKB216David J (support1@inflectra.com)web testing multiple tabs chrome tabsTesting Multiple Web Browser Tabs at Once in Chrome Sometimes you have a web test where you need to test the contents of two browser tabs at the same time in Google Chrome. For example you may have an application which opens up a second browser tab and you want to test that changes in the second tab show up correctly in the first tab. This article describes how to perform this kind of testing. Fri, 26 Aug 2016 04:00:00 -04002023-08-11T13:38:43-04:00/Support/KnowledgeBase/KB216.aspxKB209David J (support1@inflectra.com)svg vector graphics draggingTesting Web Applications that use SVG One of the more challenging types of web application is that with uses of embedded SVG (Scalable Vector Graphics) in additional to HTML DOM elements. This article describes how to use Rapise to write automated testing scripts for such applications. Thu, 09 Jun 2016 04:00:00 -04002023-08-14T16:34:54-04:00/Support/KnowledgeBase/KB209.aspxKB205David J (support1@inflectra.com)chrome x64Rapise 3.x / 4.0 Does not Connect to Chrome x64 Bit When you try and connect to the 64-bit version of the Google Chrome web browser using Rapise 4.0 (or earlier) you may get the error Connection to Chrome Failed! . This issue has been fixed in the Rapise 4.1 release, but for those customers using Rapise 4.0 or earlier, this article provides two solutions. Wed, 06 Apr 2016 04:00:00 -04002019-02-05T12:46:47-05:00/Support/KnowledgeBase/KB205.aspxKB201David J (support1@inflectra.com)excel 64-bit rapise spreadsheetError attaching to Excel spreadsheet when using Rapise 4.0 with MS-Excel 64-bitWhen you are using the global Rapise Spreadsheet object on a system running the 64-bit version of MS-Office, you may get an error attaching to the spreadsheet. This article describes the cause of the issue and provides a solution and workaround. Thu, 24 Mar 2016 04:00:00 -04002016-03-24T17:39:20-04:00/Support/KnowledgeBase/KB201.aspxKB194Kat A (support2@inflectra.com)Chrome disable-web-security cross frameWhen recording with Chrome, Rapise does not record actions within frames When creating web tests with Chrome, objects within cross-frames are not recognized by the Rapise Web Spy and recorder. This article gives a solution. Tue, 01 Mar 2016 05:00:00 -05002023-08-10T13:46:46-04:00/Support/KnowledgeBase/KB194.aspxKB193Kat A (support2@inflectra.com)frames iframes framesetUsing Rapise to test websites that contain frames If the website under test contains frames, that presents some challenges to test automation. This article gives tips for success and explains the current limitations. This article is obsolete. Please use Selenium-based profiles for Web testing. Read about Rapise XPath extensions here . Mon, 29 Feb 2016 05:00:00 -05002023-08-10T12:36:29-04:00/Support/KnowledgeBase/KB193.aspxKB192David J (support1@inflectra.com)xpath web testing ariaDifferent XPath Options in Rapise 4.0 When testing complex data-driven web applications using Rapise, it is helpful to understand the different ways that Rapise can automatically learn the objects. Rapise can learn an object using either XPATH or CSS. In the case of XPATH there are several strategies that Rapise can use to make the testing more robust. This article describes these strategies and provides some suggestions about which one is the best to use for different scenarios. Fri, 26 Feb 2016 05:00:00 -05002023-08-10T12:16:36-04:00/Support/KnowledgeBase/KB192.aspxKB191David J (support1@inflectra.com)webspy dom web testing attributes htmlWebSpy Attribute Filtering The v4.0 release of Rapise adds enhanced attribute filtering to the Web Spy as well as different options for creating XPath queries automatically. This article explains why you would want to use these features and how they can make the testing of complex data-driven web applications much easier. Thu, 25 Feb 2016 05:00:00 -05002023-08-10T12:03:24-04:00/Support/KnowledgeBase/KB191.aspxKB185David J (support1@inflectra.com)shared objects global sub-tests obsoleteUsing Global.DoLoadObjects to Use Rapise Objects from External File 72 One of the challenges using an automated testing tool is to organize things in a way that it is logical enough to find something quickly, structured enough to avoid duplication and simple enough to maintain and upgrade. This statement is also true for Rapise objects. A common requirement is to deal with the same objects within a flow of different test cases. For instance, if an application has Log In functionality then many, many tests will require logging-in and logging-out. Each test will have this object in its own object tree. However this causes trouble if a change in the application affects the recognition of the Log In object. All of the test cases will need to be updated. In such situations it is much more convenient to have the Log In objects placed into their own file and re-used by other tests. This article is obsolete. In Rapise 8.0 and above the recommended approach is to use Page Objects / Modules . Wed, 06 Jan 2016 05:00:00 -05002023-08-10T11:54:07-04:00/Support/KnowledgeBase/KB185.aspxKB186David J (support1@inflectra.com)testing waiting application not readyGlobal.DoWaitFor vs Global.DoWaitForProperty 72 The most commonly used synchronization option to make Rapise wait until the application under test (AUT) is ready is the Global.DoSleep action. However having just a sleep may cause an unnecessary delay because we have to consider the maximum wait interval and it may be much less on average. Rapise includes some additional synchronization options for more fine grained control of the test case flow. Normal 0 false false false EN-US X-NONE X-NONE /* Style Definitions */ table.MsoNormalTable {mso-style-name:"Table Normal"; mso-tstyle-rowband-size:0; mso-tstyle-colband-size:0; mso-style-noshow:yes; mso-style-priority:99; mso-style-parent:""; mso-padding-alt:0in 5.4pt 0in 5.4pt; mso-para-margin-top:0in; mso-para-margin-right:0in; mso-para-margin-bottom:10.0pt; mso-para-margin-left:0in; line-height:115%; mso-pagination:widow-orphan; font-size:11.0pt; font-family:"Calibri","sans-serif"; mso-ascii-font-family:Calibri; mso-ascii-theme-font:minor-latin; mso-hansi-font-family:Calibri; mso-hansi-theme-font:minor-latin;} Wed, 06 Jan 2016 05:00:00 -05002019-09-18T09:04:17-04:00/Support/KnowledgeBase/KB186.aspxKB187David J (support1@inflectra.com)navigator check object exists synchronizationUsing CheckObjectExists(xpathOrObjId) to See if Web Object Exists on Page This articles describes how you can use the Navigator.CheckObjectExists (...) action to see if an element exists on a web page and how it differs from the Global.DoWaitFor / DoWaitForProperty actions that are described in another article . Wed, 06 Jan 2016 05:00:00 -05002019-09-25T04:33:37-04:00/Support/KnowledgeBase/KB187.aspxKB184David J (support1@inflectra.com)reporting test flowWhat is the purpose of the Tester.EndTest() Function? The Tester.EndTest() function in Rapise is described as: Marks end of a currently executed test. Calculates test results and performs finalization of test execution . We have found that some of our customers have been confused as what the purpose of this function is. Wed, 16 Dec 2015 20:17:42 -05002020-03-09T07:33:18-04:00/Support/KnowledgeBase/KB184.aspxKB182David J (support1@inflectra.com)automation rich text tinymce How to automate the testing of TinyMCE Rich Text Boxes using Rapise DEPRECATED Method described in this article does not work any more because browser security has changed since 2015. Now it is not possible to directly access client side JavaScript model. We have a new article that explains how to automate TinyMCE https://www.inflectra.com/Support/KnowledgeBase/KB541.aspx When you have a rich text box in a web application, the process for recording a test and playing it back will be different to a standard HTML plain text box. When you are using the popular TinyMCE rich text box you have more options to automate it by using its special client-side JavaScript API. Tue, 15 Dec 2015 05:00:00 -05002020-05-21T16:13:29-04:00/Support/KnowledgeBase/KB182.aspxKB181David J (support1@inflectra.com)rest web services api testingDynamically constructing the .rest file URLs to test REST APIs Sometimes when using Rapise to test REST web services, you want to be able to dynamically change the base URL of the web service yet still use the same URL template and method information. This article describes a process for achieving this. Wed, 09 Dec 2015 19:17:53 -05002023-08-10T10:51:51-04:00/Support/KnowledgeBase/KB181.aspxKB177David J (support1@inflectra.com)web testing browser testing cross browser testingWeb testing - Dynamically Switching the Browser in the Same Test Sometimes you have a test that you want to run on Chrome, Firefox, and IE in the same script. Normally you write a browser-agnostic test and then have SpiraTest simply call Rapise with different browser names as a parameter and then you have the same test executed multiple times. However suppose you want to have a single test that by itself can run on all the necessary browsers. This article addresses this case. Mon, 23 Nov 2015 05:00:00 -05002023-08-10T10:36:12-04:00/Support/KnowledgeBase/KB177.aspxKB176David J (support1@inflectra.com)browser performance web testingMeasuring browser performance with Rapise How do you get the exact time that Rapise takes to load a page? Now, the reports summary shows the overall execution time but if you have pause times between steps then these times are added to the total time of that a page took to display. Customers have asked if Rapise has some kind of function that will allow them to see only the transaction time between pages without the pause times. Does Rapise have something like that? This article provides a solution to these cases. Thu, 19 Nov 2015 21:22:43 -05002023-08-10T10:24:49-04:00/Support/KnowledgeBase/KB176.aspxKB175David J (support1@inflectra.com)excel spreadsheet data-driven testingUsing Rapise to populate data in an Excel SpreadsheetThe built-in Spreadsheet object in Rapise makes it easy to read data from an MS-Excel spreadsheet. What happens if you want to write data back to the Excel sheet? Mon, 16 Nov 2015 20:53:47 -05002015-11-16T20:53:47-05:00/Support/KnowledgeBase/KB175.aspxKB172David J (support1@inflectra.com)xpath css learningDynamically changing object locators for Web applications Sometimes you want to dynamically change the XPATH or CSS used in a specific object from within the test script itself. This article explains the process for doing this. Thu, 24 Sep 2015 04:00:00 -04002023-08-10T09:58:03-04:00/Support/KnowledgeBase/KB172.aspxKB168David J (support1@inflectra.com)rapise reportingCustomizing the Rapise Reports By default, the reports displayed within Rapise report back each test activity and assert statement as a line in the report with all of the activities and events being displayed in a single flat list regardless of whether they happen inside the main Test() function or a sub-function. This articles explains how you can extend the reporting. Sat, 22 Aug 2015 04:00:00 -04002023-08-10T09:50:07-04:00/Support/KnowledgeBase/KB168.aspxKB166Kat A (support2@inflectra.com)Rapise web site testing multi select list HTML select multipleUsing Rapise 3.1 to test a web page with a multi-select list When you have a multi-select list in a web application, you may need to check which items are selected, or to check whether or not a particular item is selected. This article illustrates how to do that. Fri, 17 Jul 2015 04:00:00 -04002023-08-10T09:45:59-04:00/Support/KnowledgeBase/KB166.aspxKB164David J (support1@inflectra.com)asserts quiet rapiseCalling Rapise DoX functions without reporting result When you use a DoX command in Rapise to perform a specific command (e.g. DoDOMChildrenCount() to get a number of objects DOM children), in the report an extra step -- assert -- is created during test execution. Sometimes you want to be able to call a function quietly without it affecting the report. Mon, 06 Jul 2015 19:29:18 -04002023-08-10T09:34:20-04:00/Support/KnowledgeBase/KB164.aspxKB163David J (support1@inflectra.com)style dom web testing computer dynamicAccessing the Computed Style Properties of an HTML DOM Object A common question from our users is, is there a way to get objects style properties that are in effect at a certain point in time. (for example, it could have been inherited from higher level of hierarchy, or modified via JavaScript running on the page)? This article describes how to do this. Mon, 06 Jul 2015 00:23:01 -04002023-08-10T09:24:21-04:00/Support/KnowledgeBase/KB163.aspxKB161David J (support1@inflectra.com)ie trusted sites security playback click modeCertain Hyperlinks won't click during playback with Internet Explorer (IE) Sometimes when you record a test script using IE and then play it back, some of the clicks on hyperlinks will not playback correctly. Rapise will list them as Passed, but the click wont actually be performed. Fri, 19 Jun 2015 04:00:00 -04002023-08-10T09:19:52-04:00/Support/KnowledgeBase/KB161.aspxKB160David J (support1@inflectra.com)firefox updates web testingRapise cannot connect to Firefox immediately after Firefox updates If you try and connect to Firefox with Rapise immediately after Firefox has updated, you may see the following error message: Microsoft JScript runtime error: 'Navigator.GetBrowserHWND()' is null or not an object Wed, 17 Jun 2015 04:00:00 -04002015-12-16T20:04:34-05:00/Support/KnowledgeBase/KB160.aspxKB158David J (support1@inflectra.com)rest api spiraAccessing the Spira v4.2 REST API to get test cases in a release This article describes the process and provides an example for accessing the Spira v4.2 REST API to get a filtered list of test cases in a release. Wed, 10 Jun 2015 04:00:00 -04002023-08-10T09:08:52-04:00/Support/KnowledgeBase/KB158.aspxKB146David J (support1@inflectra.com)common objects common functions rest web servicesHow to Use Sub-Tests and Common Objects with REST Web Service Tests It is often useful to have a common set of code libraries and objects that can be reused amongst multiple tests. With Rapise this can be done by creating a common test and then including it into the other actual tests. However due to the way REST web service tests are stored, there are some slight changes needed to handle REST services. This articles describes the process. Note: if you have Rapise 8.0+ there is a simpler way, just create a module for REST service calls . Mon, 18 May 2015 04:00:00 -04002023-08-08T16:31:00-04:00/Support/KnowledgeBase/KB146.aspxKB142Kat A (support2@inflectra.com)DoClick Click mouse obsoleteScripts created with Rapise 2.1 or earlier no longer playing back correctly in Rapise 2.2 or later In Rapise 2.2, DoClick behavior was changed, so we dont do a click but rather just position the mouse over the control and do API-level click event. However we provided a way to enable backward compatibility. This article is obsolete. Mon, 04 May 2015 04:00:00 -04002023-08-08T15:23:04-04:00/Support/KnowledgeBase/KB142.aspxKB141David J (support1@inflectra.com)silverlight uiautomationTesting Silverlight Applications When testing Silverlight applications, you may find that Rapise fails to recognize the objects in the Silverlight app using the UIAutomation library. When using the Rapise Spy Tool, the whole app is identified as a single window. The objects such as a dropdown, buttons etc. inside the silverlight app are not individually recognized. Tue, 07 Apr 2015 04:35:48 -04002023-08-08T15:20:14-04:00/Support/KnowledgeBase/KB141.aspxKB139David J (support1@inflectra.com)rapise recording commentsDisabling the generation of comments during Recording By default Rapise records user actions with a line commented out for each action. This articles describes how you can disable this behavior if you just want the script lines recorded on their own. Mon, 02 Mar 2015 05:00:00 -05002023-08-07T15:47:42-04:00/Support/KnowledgeBase/KB139.aspxKB121Jim R (donotreply5@kronodesk.net)object type recordingChoosing Object Type Manually Sometimes Rapise will incorrectly recognize a GUI component. This guide outlines how you can manually change the object type captured during recording. Fri, 20 Feb 2015 19:43:47 -05002023-08-10T08:44:38-04:00/Support/KnowledgeBase/KB121.aspxKB115Jim R (donotreply5@kronodesk.net)web menu dynamic sites recordingRecording Web Menus Many web sites have dynamic site menus. This guide outlines the best practices for recording events associated with such dynamic site menus. Fri, 20 Feb 2015 19:25:27 -05002023-05-03T06:46:44-04:00/Support/KnowledgeBase/KB115.aspxKB116Jim R (donotreply5@kronodesk.net)xpath dom browser automationWorking with HTML XPath When testing web applications you will often need to use XPath to query the browser DOM for elements based on the scenario under test. This guide explains how you can use XPath queries with Rapise to make your browser testing more flexible and adaptive to changes on the screen. Fri, 20 Feb 2015 05:00:00 -05002023-08-07T13:04:19-04:00/Support/KnowledgeBase/KB116.aspxKB117Jim R (donotreply5@kronodesk.net)web testing tables dynamic html obsoleteWorking with HTML Tables containing Dynamic Data Many web sites use HTML tables to display lists of tabular data. When testing such applications you will often need to dynamically search for items in the table to verify that the application under test performed correctly. This guide outlines best practices for accessing data held in HTML tables. This article is obsolete. For dealing with dynamic table data please refer to How to define and use a dynamic Web locator article. Fri, 20 Feb 2015 05:00:00 -05002023-10-30T21:52:28-04:00/Support/KnowledgeBase/KB117.aspxKB109David J (support1@inflectra.com)xpath dynamic objects child countUsing DoDOMChildrenCount and DoDOMQueryXPath to inspect child HTML elements Often you want to be able to query for the child elements on a web page that are dynamically created and therefore not good candidates for LEARNing individually. This article explains how you can use the dynamic XPATH methods of Rapise to accomplish this task. Tue, 20 Jan 2015 05:00:00 -05002023-08-02T09:25:03-04:00/Support/KnowledgeBase/KB109.aspxKB105David J (support1@inflectra.com)ie internet explorer 3025390 ms14-080After installing Windows Update KB3025390 Rapise No Longer Connects to IE An old (December 9th, 2014) security update for Microsoft Windows and Internet Explorer (KB3025390) broke the support in IE for 'out-of-process' code execution. This effectively prevented an automated testing application such as Rapise from automating Internet Explorer (IE) applications. This was subsequently fixed by Microsoft on February 10th, 2015 with the KB 3021952 update. Mon, 12 Jan 2015 05:00:00 -05002015-02-11T17:00:31-05:00/Support/KnowledgeBase/KB105.aspxKB101Jim R (donotreply5@kronodesk.net)rapise file upload htmlAutomating HTML File Upload Boxes Sometimes you have to automate the uploading of files using an HTML file upload control. This article explains how to record and playback such a script. Fri, 19 Dec 2014 05:00:00 -05002024-03-27T06:17:34-04:00/Support/KnowledgeBase/KB101.aspxKB97David J (support1@inflectra.com)confirm alert popup dialog javascriptRecording Popup JavaScript Confirmation Boxes When you are recording a test against a Web application you may have to deal with a popup JavaScript confirm or alert box. This article describes the process for dealing with them. Thu, 04 Dec 2014 05:00:00 -05002019-03-27T12:44:44-04:00/Support/KnowledgeBase/KB97.aspxKB96David J (support1@inflectra.com)automation rich text iframeHow to automate the testing of Rich Text Boxes using Rapise When you have a rich text box in a web application, the process for recording a test and playing it back will be different to a standard HTML plain text box. This is because the browser actually uses a separate IFRAME and HTML document for the editable rich text box. This article explains the process for recording/playing back such a test. Thu, 20 Nov 2014 05:00:00 -05002020-05-21T15:27:21-04:00/Support/KnowledgeBase/KB96.aspxKB86David J (support1@inflectra.com)cross-browser testing chrome firefox internet explorer obsoleteChoosing the Web Browser in Rapise from SpiraTest / SpiraTeam When writing a web test in Rapise you will often want to run the same test script in all three web browsers (IE, Firefox and Chrome). You will want to be able to choose the Test Script from within Rapise when debugging the test and then from a Test Set in SpiraTest when you move the test into production. This article explains the process. This article is obsolete. For modern way of running Rapise tests in multiple browsers please refer to Rapise 8.0: how to run test cases on different browsers . Thu, 07 Aug 2014 04:00:00 -04002023-08-02T08:36:14-04:00/Support/KnowledgeBase/KB86.aspxKB83David J (support1@inflectra.com)chrome firefox auto-updating web browsersTurning off Chrome and Firefox Auto-Updating When you are testing a web application against different environments, it can be useful disable to default browser auto-updating policies so that you have a stable testing environment. This articles describes how to disable the auto-updating policies of Google Chrome and Firefox. Thu, 15 May 2014 18:18:54 -04002021-06-30T09:43:13-04:00/Support/KnowledgeBase/KB83.aspxKB64David J (support1@inflectra.com)javascript execjs navigatorUsing Navigator.ExecJS to execute JavaScript code inside a browser Sometimes you need to execute JavaScript code at a browser side and get the result. You can do this with Navigator.ExecJS . Fri, 25 Oct 2013 04:00:00 -04002020-05-14T08:35:42-04:00/Support/KnowledgeBase/KB64.aspxKB56David J (support1@inflectra.com)wpf silverlight listbox components listitemsAccessing child components of a WPF / Silverlight ListBox When you have a WPF or Silverlight application that has a list box (or other control that supports templates such as a Tree) that has an item template that contains sub-controls, you may need to access the individual controls rather than just the entire list item. This article outlines the approach for doing this. Thu, 18 Jul 2013 04:00:00 -04002023-08-01T14:26:34-04:00/Support/KnowledgeBase/KB56.aspxKB50David J (support1@inflectra.com)uiautomation locators wpf silverlight obsoleteDynamically changing object locators for WPF/Silverlight applications Sometimes you will have controls in a WPF or Silverlight application which use dynamic lists. Depending on certain settings, the widgets in the list will appear in different places. This means that a learned Rapise object which works fine if its in the original ListBox[0] location position is not found during playback when its displayed in another position, e.g. ListBox[1] or [2]. Unlike the XPath option with web testing, Rapise doesnt currently allow regular expressions (Regex) in locators stored inside the Objects.js file. This article describes a way around the problem. This article is obsolete. Rapise supports regular expressions in UIAutomation locators since version 6. Read this article for more details. Fri, 24 May 2013 04:00:00 -04002023-08-01T13:46:26-04:00/Support/KnowledgeBase/KB50.aspxKB46David J (support1@inflectra.com)ie browser navigator javascriptExecuting JavaScript commands against Web Browser Sometimes you want to be able to open a browser window and execute JavaScript commands directly against the DOM objects rather than using the Rapise learned objects. This article explains the recommended way of doing this. Tue, 23 Apr 2013 04:00:00 -04002019-09-27T12:16:08-04:00/Support/KnowledgeBase/KB46.aspxKB38David J (support1@inflectra.com)browsers selecting ie chrome firefoxSelecting Browser for Test This article describes how to playback a test in a different browser from the one it was recorded in. Fri, 15 Feb 2013 05:00:00 -05002023-08-04T13:34:11-04:00/Support/KnowledgeBase/KB38.aspxKB32David J (support1@inflectra.com)java applet web browser uacUnable to record/play a Java applet using Rapise inside a web browser Sometimes you have the situation where you can record/play a Java application using Rapise having correctly installed the Java bridge and set the JAVA_HOME environment variable correctly, but applets running inside a web browser do not work. This article provides some suggested solutions Thu, 10 Jan 2013 17:12:02 -05002023-08-04T13:45:57-04:00/Support/KnowledgeBase/KB32.aspxKB18David J (support1@inflectra.com)browser closing multiple obsoleteHow Do I Ensure No Other Browser Windows Open When running a test you will often want to make sure there are no other browser windows open. This is commonly done either at the start or end of the test. This article describes how you do this. This article is obsolete. With Selenium-based connectors (default option since Rapise 7.3) opened browser windows are longer an issue. One may continue to use regular browsers. Rapise will use isolated browser profiles to run tests. Mon, 15 Oct 2012 04:00:00 -04002023-07-31T12:31:55-04:00/Support/KnowledgeBase/KB18.aspxKB13David J (support1@inflectra.com)rapise browser testing zoomTest-Scripts suddenly moving/clicking at false locations If you have your browser zoom set to a value that is not 100% when recording or playing back scripts it will affect the playback reliability. Specifically Rapise may click/move at/to false locations in the test browser. You need to set your browser zoom to 100% before doing any playback/recording activities. Wed, 12 Sep 2012 14:15:40 -04002023-07-28T12:13:15-04:00/Support/KnowledgeBase/KB13.aspxKB11David J (support1@inflectra.com)web site testing rapise change url urlHow do I change the URL of the website being tested in Rapise. We are in the process of adding a new testing server that we would like to be able to run automation scripts against. I just wanted to see if there is a process documented for converting scripts and objects to point to a different web address? Fri, 31 Aug 2012 04:00:00 -04002023-07-28T12:08:46-04:00/Support/KnowledgeBase/KB11.aspx