Currently Test Studio Execution extension allows to get the duration only of the overall test in the OnAfterTestCompleted() method.
Extend the functionality and include the option to get the duration of each separate executed step.
Dear Telerik team,
we lately encountered an inconvenience in using ArtOfTest.WebAii.Win32.SaveAsDialog.CreateSaveAsDialog(params).
The issue occurs in the SaveAsDialog.Handle() method. In there the keyboard input uses fixed parameters for delay and hold: _desktopObject.KeyBoard.TypeText(_filePath, 50, 50, supportUnicode: true);
This slows our test unnecessarily down, so it would be desirable to either change the input parameters to a reasonably short time (Why not 0,0?) or give the developer the option to manually change the parameters, since there is no need for these delays in automated tests.
Best regards
A custom web app requires key pad authentication to log in and this uses an extension in chrome/edge.
Test Studio does not allow signing in because the chrome being opened by Telerik does not allow me enable extension.
I have tried this for edge and chrome and it doesn't work.
Currently WPF tests always require an application to be configured and launched upon test start. So, one need to always use a dummy app when using the 'Connect to app' and 'Launch app' steps.
Enable the WPF test configuration with the option to not launch an application - similar to the configuration experience for Desktop test.
when I open TS -> Results ->
lets say it's Wednesday, a noon, and I have daily runs. I see some already executed - marked as green or red, and some yellow tiles, from the future. When I try to check what is the PC node name where a single task (list) will be executed, I don't see that info on a tile directly. Moreover, when I go and edit it, I see settings for a frequency and time, in next step I see what is the name of list selected, but on the very next step, where all nodes are listed, nothing is selected. That looks like a bug. So, if I have 20 things scheduled, I need to rely on my own notes to be sure I edit correct task. The name of the PC is available only for already executed task. No idea why it's not visible for future runs.
I need to export the contents of our test lists to a CSV, TXT or Excel file. There is no option other than exporting the generated results from a test list run.
However I need to be able to export the tests in a test list before I get to the point of executing these.
There is no option in Test Studio recording capabilities to add a step which sets value for the WPF RadSlider control. It will be useful to have such similar to the WPF slider control.
The workaround is to set this in a coded step like this:
// Accepts values from 0 to 1
Applications.SliderTestexe.MainWindow.Item0Radslider.Value = 0.25;
Hello,
Currently when I create a Git repo and connect Test Studio it creates default branch called "master".
Would it be possible to make it consistent with good practice and Git standard and rename it to "main" in the next version of Test Studio?
Can this be added as feature request please.
Thank you,
Max
When generating videos for the test runs from a test list, the output video files uses the name of the test only. There is no indication which is the test list from which this test was executed and when having multiple runs and videos it is difficult to relate these with the generated results.
It will be useful to generate the names of the videos from a test list in a way to correspond to the test list name and particular run.
Currently the exported result contains extended details only for the failed steps. If there is a warning for a step - like the warning that the element was found only by image, this can be only seen in the Test Studio result file.
Extending the HTML exported result to show the step warning details will be very useful for anyone who review this type of result (attached in an email after a scheduled run, for example).
Currently the Test Studio CLI runner AOT.Runner.exe allows outputting the results in junit format (other than xml and html).
Add the option to output the results in NUnit format.
Enhance Test Studio recording and execution options with the ability to prompt the user whether to deny or allow permissions to their geo location.
The app i'm testing may popup a dialog in Edge to ask the user to know their location.
However when i try to record the test using Edge i don't see this popup. I just see an error thrown by the app that says the user denied Geo Location.
When i access the app with edge outside of Test Studio i do get prompted.
Currently Test Studio built-in connection to Git repository is covered for the straight scenario for authentication.
Enhance the options for connecting to Git using authentication via proxy.
Currently if the value used for a filter starts with #, the comparison operator is automatically converted from 'is exactly' to 'matches this regular expression'.
So, if one needs to use URL fragment (starts with #) for element identification, for example, that # needs to be escaped.
The workaround to use will be to change the comparison operator with 'contains' and use the fragment portion without the # sign.