Completed
Last Updated: 13 Oct 2023 08:44 by ADMIN

The tests execute as expected but upon checking the logs the variable names are no longer displayed and instead I am only able to see testStudioBase64EncodedVar.


This change will make debugging issues much more difficult in the future

 
Completed
Last Updated: 18 Apr 2023 07:01 by ADMIN
Created by: Dan
Comments: 7
Type: Feature Request
1
Add the option to hide or resize the Step Result Details panel that persists for all tests in the project.
Completed
Last Updated: 03 Apr 2023 13:00 by ADMIN

BlazorTextArea records a KendoAngularTextBox step. Upon execution the step doesn't enter the text as expected. 

To workaround this, you can disable the KendoAngular controls group from the Project Settings -> Translators -> HTML and re-record the step. 

Completed
Last Updated: 03 Apr 2023 18:18 by ADMIN
A specific test cannot generate the output html file correctly when using the html option for CLI execution with ArtOfTest.Runner.exe.
Completed
Last Updated: 17 May 2021 11:45 by ADMIN

Add the option to start quick execution of tests in Headless mode from Visual Studio.

Currently it is available from the Select Execution Browser window, but if you have selected a preferred browser this window is skipped.

Completed
Last Updated: 17 Mar 2021 14:44 by ADMIN
The 'ColorAndBackground:BackgroundColor' style verifications in Test Studio v.2021.1.309 cannot be added in recording mode - the value from DOM tree is missing in the Verification builder. Previously recorded steps cannot be executed as well. 
Completed
Last Updated: 03 Nov 2020 13:30 by ADMIN
Created by: Ray
Comments: 1
Type: Feature Request
0

Show MongoDB service's status in the Configure Test Studio Services window in MongoDB tab. If it is running, it should indicate it in a similar way as the Storage and Scheduling services.

Currently, only when you apply the service settings, it is started and that is shown in the status bar. If I close the Configure Test Studio Services window and open it again, that information is missing again.

Completed
Last Updated: 03 Apr 2023 21:26 by ADMIN

The Image verification and OCR steps do not work for WPF tests.

Those steps are simply not added to the test with the latest release 2020.R2.

 

Completed
Last Updated: 10 Dec 2020 09:00 by ADMIN

Hi guys,

We're using Telerik Testing Framework for automation and running tests primarily against IE browser and since we have security policies enforced on clients, tests started to fail more often with ApplicationException on start.

After some investigation we found that in LaunchNewBrowserInstance() function in Core.Manager has hardcoded timeout to 5000, which is not enough now for IE to respond. As you can see in the code below, everything is using 'timeout' variable except 'Connector.Attach(ref handle, 5000);' - it uses hardcoded timeout to wait:

internal static object LaunchNewBrowserInstance(
      int timeout,
      ProcessWindowStyle windowStyle,
      string pipename,
      string url)
    {
      string str = string.IsNullOrEmpty(url) ? "about:blank" : url;
      try
      {
        ProcessStartInfo startInfo = new ProcessStartInfo()
        {
          Arguments = (InternetExplorerActions.MajorVersion >= 8 ? "-nomerge " : string.Empty) + str,
          Verb = "open",
          WindowStyle = windowStyle,
          ErrorDialog = false,
          FileName = "iexplore.exe"
        };
        System.Diagnostics.Process process = System.Diagnostics.Process.Start(startInfo);
        TraceInfo.Framework.ReportProcessLaunched(process, startInfo);
        IntPtr handle = InternetExplorerActions.WaitForIEFrameFromProcess(process, timeout);
        TraceInfo.Framework.WriteLine("Attempting to attach on IE frame (HWND={0})...", (object) handle);
        Connector.Attach(ref handle, 5000);
        System.Diagnostics.Process currentProcess = System.Diagnostics.Process.GetCurrentProcess();
        int num = currentProcess.Id;
        if (currentProcess.ProcessName == "ArtOfTest.Runner")
          num = InternetExplorerActions.SafeGetParentOrCurrentId(currentProcess);
        Connector.InjectCode(handle, InternetExplorerActions.ArtOfTestPlugin, pipename, num.ToString(), true, timeout, "");
        return (object) null;
      }
      catch (Exception ex)
      {
        throw new ApplicationException("Exception thrown attempting to launch Internet Explorer. Please make sure Internet Explorer is properly installed and you are able to launch it.", ex);
      }
    }

This is likely the cause, why our increased timeout settings are ignored and test fails shortly after start, even if we increase timeouts significantly. Visually, it looks like IE is doing some background job and is not responsive for some period of time and 5 seconds is not enough to wait. So, could you change the code to respect 'timeout' instead of using constant number?

We've been using Telerik Testing Framework for a long time already and from time to time had this issue, but workaround it by catching exception, killing browser and trying to launch it again. But now that trick is not helping anymore, the majority of tests fails with this exception on start.

This fix is really simple and will save us a lot of time, trying to invent some new solution to make IE more responsive on start.

 

Thanks,

Oleksii

Completed
Last Updated: 22 Apr 2020 07:24 by ADMIN
Created by: Travis
Comments: 1
Type: Feature Request
0
I am in the evaluation phase of test studio. I think a feature to send selected steps to new test would be greatly beneficial to the test development process.
Completed
Last Updated: 22 Apr 2020 10:59 by ADMIN
The Console WIndow is no longer popping out in quick execute mode including partial runs using Run->... options. It will be helpful to allow this functionality to be enabled in case of need. 
Completed
Last Updated: 05 Mar 2020 08:32 by ADMIN

On the Executive Dashboard, the columns are all fixed sized, the problem with this is that it gives very little space for test and test list names and makes it difficult to view the naming.

Please provide a way to resize or view the names easily.

Completed
Last Updated: 18 Nov 2019 08:30 by ADMIN
Created by: David
Comments: 2
Type: Feature Request
1

Really excited to have a dashboard to present to the team now

Is there anyway to configure the number of Tests that display from within a result?  Right now it only looks like 5 is what is the default, that requires quite a big of pagination.

Completed
Last Updated: 03 Apr 2023 21:24 by ADMIN
Created by: Efficio
Comments: 0
Type: Feature Request
2
I can't seem to access the Executive Dashboard from any server except the server where it is installed even if I use the IP of that server. The configuration form for it only allows the port to be configured while the one for the scheduling server allows an URL to be configured. Please extend the configuration.
Completed
Last Updated: 08 Jan 2024 08:10 by ADMIN
Created by: Ray
Comments: 0
Type: Feature Request
0
Hello,

I wanted to make a small and specific suggestion. You all have a button in the Projects pane with the title "Filter tests used as steps." This button switches between two states: showing all tests and test steps, and showing only test steps.

This really should be a 3-state button. I want to see:

- showing all tests.

- showing only test, used as steps.

- showing only tests, which are not used as steps.
Completed
Last Updated: 28 Jul 2021 06:56 by ADMIN

Telerik does not support test studio assemblies in .net standard and does not have a test runner in .net core. Considering all of our Azure DevOps and container agents are running linux we will not be able to use the tool.

Please add this feature to your product.

Completed
Last Updated: 11 Sep 2020 11:17 by ADMIN
Option to retain Last state of project if user is trying to reopen the solution again
Completed
Last Updated: 27 Aug 2019 06:56 by ADMIN

How can I change the size of the element suggestion pane? I can't seem to click and drag it, and I'd like to see more than two or three options.

Currently there is only a scroll that can be used to view all options.

Completed
Last Updated: 03 Apr 2023 21:24 by ADMIN

The step to verify an element for enabled/disabled step cannot be data-driven. The 'Verify element exists' also does not provide a binding option.

However, the 'Verify isVisible' step can be data driven with true/false values for the isVisible property. 

It will be useful and helpful to unify the behavior and allow data binding for isEnabled and Exists verification steps. 

Completed
Last Updated: 11 Sep 2020 11:21 by ADMIN
Created by: Andrew
Comments: 1
Type: Feature Request
2
I added a comment to about 20 coded step files (.cs) in a large test project (1000's of files).  I expected to be able to search for that comment and find all the places I put it.  I don't see a way in Test Studio to search for text in those coded step .cs files.  Am I just not seeing it, or is that functionality not there?
1 2 3 4 5 6