Currently sending a dynamic target towards JSON POST data replaces the complete string.
Add the ability to parse the JSON POST data and replace only certain parts of it.
Hi Team ,
I wanted to customize the result generated from Test studio. Kindly guide me a way.
Regards,
Prajna
Dear Telerik team,
I would like to verify if an image has appeared at a certain position in my desktop application. I found in the Telerik documentation that this is possible for Web and WPF tests. Is this feature also available for desktop tests? Or is there some trick to verify the image without this feature?
I am currently using the free trial version of Telerik Test Studio to see if it meets all my needs and whether I will get the full version.
Thank you
Zuzana
Sample date picker used here.
Steps to reproduce:
Expected: To record a step to 'Enter Text'
Actual: A 'Click' step gets recorded and no date entered is registered in the test.
Workaround:
Sometimes customers want to be able to run their test with the browser launching in a special mode (e.g. incognito mode, custom/specific user profile, etc.). If the customer could add custom command line parameters to be used when launching the browser they could accomplish this.
Uploading multiple files works in Chrome with the browser in extension mode. This functionality is missing in extensionless mode and the test execution fails. Please provide a solution for extensionless mode.
As a workaround, there a coded solution here.
Depending on the implementation of Kendo Menu via ASP.NET Core it returns different HTML. In the case where we use Html.Kendo it is generated in a way that works well with all built-in methods in the translators.
However, if we use tag helper syntax instead, the structure of the Kendo menu element is different and the code below times out.
KendoMenu menu = Pages.Home.MenuNavigation; KendoMenuItem menuItemSettings = menu.AllMenus.SingleOrDefault(x => x.MenuItemTitle == "title"); menuItemSettings.MouseHover(); Wait.For(x => menuItemSettings.AllOptions.Count > 0, menuItemSettings, 5000); // running into a timeout, because menuItemSettings.AllOptions always 0
It would be helpful to extend the functionality of the Kendo translators to include both types of DOM structure. We are using Kendo UI version 2022.2.510 and Test Studio 2022.2.804.
Kendo Angular Daterange component is not supported via built-in translator in Test Studio. But it can be automated out-of-the-box by typing the data directly into the input field with slight adjustment of the step:
When executing this test with the recorded 'Enter text' step in Chrome and Edge it works fine.
When executed in Firefox, the date isn't populated correctly as it gets typed only in the year section of the date input.
Expected: The recorded step should behave the same for all browsers. Can this be fixed?
Workaround: The current solution is to convert the 'Enter text' step into code and specify the coordinates of the click action so that the click happens on the left from the input center. Modified coded step is available in the sample test.
Which Windows Server versions are supported for use with Docker containers? The documentation here only shows how to setup up a Docker container on a Windows machine, but not on Windows Server and other images.
Please specify which version and images are supported for testing with Run-Time in a Docker container.
We use Test Studio with Visual Studio and we are able to use the Pending Changes feature of Visual Studio to see that we have changed certain test scripts and to check them in to source control.
It would be better to show changes of tests and steps in a more human readable form. This applies for Test Studio projects that are under source control in Test Studio IDE or in Visual Studio.
Some actions in specific application with frames cannot be recorded as expected.
The last version of Test Studio when this was working fine is R3SP1 2020 (v.2020.3.1209).
Further details shared internally.
Hi Team,
We're submitting a feature request based on Support ID 1567144.
Currently the tool does not support selection of multiple files through Open-File-dialog in WPF apps.
1 possible solution can be to multi-select files through key-press(which is present in other automation tools).
Scenario: The steps for applying a filter in WPF grid columns is tied up with the index of the column in the current view of the grid. However, the columns in WPF grid can be reordered. And after changing the columns initial order, any steps to interact with the filtering, will act based on index in the current order.
Steps to get the scenario in action:
Expected is that you can identify the specific columns filters by their name, for example.
Actual is that the interacting with the filters is based on the order of columns. Or in other words the filter for the second column will be opened, if that was recorded, no matter if it is a different column.
Feature request: Implement the option to use the column names to identify the filters to select.
Workaround: The lack of this functionality can be covered in a coded step - the sample code below is based on the structure of the grid from the Telerik WPF demo app.
// Add the cilumn name textbloxk element in the Elements Explorer so that you can use it in the code.
// Ensure its find expression uses the TextContent attribute - that way the element will be consistently identified no matter where it is in the grid
var lastNameTextblock = Applications.WPF_Demosexe.WPF_Controls_Examples__GridView_ChartView_ScheduleView_RichTextBox_Map_Code_Samples.LastNameTextblock;
// Locate the first parent element of that textblock, which is of type grid
var cell = lastNameTextblock.Parent("Grid");
// Create a find expression, which searches for element with XamlTag=filteringdropdown
var expression = new XamlFindExpression("XamlTag=filteringdropdown");
// Use it to locate and click on that element.
cell.Find.ByExpression(expression).User.Click();
I am wondering how to adjust a kendo-rangeslider to a different value using the Test Studio. In this case the slider is wrapped in an HTML div. It does not respond to the Javascript events.
Please consider addition this component to the Kendo components library in Test Studio.