Planned
Last Updated: 24 Sep 2020 06:18 by ADMIN

The load test fails to upload to the database, if there is a "." in any of the header names. The limitation comes from MongoDB's driver.

As a workaround, you can change the header name to not include "." or delete the key-value pair from the .tstest file.

Planned
Last Updated: 27 Oct 2020 07:45 by ADMIN

The browse button, which allows you to set the path to the WebDriver is not showing. It is hidden by the vertical scroll bar in the Project Settings -> Browsers tab (see hiddenButton.png).

As a workaround, you can set the WebDriver path from Test Studio's Test Runner (see workaroundTestRunner.png).

 

Planned
Last Updated: 21 Dec 2020 15:13 by ADMIN

In the "Results" tab, the "View Performance Results" icon is not consistent. It appears even though there is no test selected and in some cases disappears, if you switch between test list results.

It does work as expected and all icons are showing, after selecting a test from the test list results.

Planned
Last Updated: 07 Jun 2021 06:44 by ADMIN

Hi,

 

We are unable to use TestStudio for WPF, when closing the window during recording we get an excpetion.

I tried and created simple wpf app in VS 2019 and get same results.

I attached a C# project as solution was to big.

 

 

Simple app is based on VS 2019 telerik for WPF project, created as blank.

Only code changed is adding a DispatcherUnhandledException on App class.

Handler:

private void OnDispatcherUnhandledException(object sender, DispatcherUnhandledExceptionEventArgs e)
        {
            if (e.Handled || e.Exception == null)
            {
                return;
            }
 
            e.Handled = true;
 
            MessageBox.Show(e.Exception.Message);
        }

 

Steps:

1) Create new project

2) Create new test for WPF 

3) Configure to the WPF app exe file

4) Click record

5) After test studio is connected close the window.

 

Expected results:

Window get closed without any problems.

 

Actual results:

While closing the window exception is being thrown that we.