Pending Review
Last Updated: 06 Apr 2023 11:34 by ADMIN
When you enable annotations and execute the test from  project's explorer context menu the annotations are turned off. 

As a workaround you should use quick execute button or F5
Pending Review
Last Updated: 16 Feb 2022 20:24 by Stephen
Created by: Stephen
Comments: 0
Type: Bug Report
0

When I run my test that requires a button click event it works fine. However, when that same test is run from test list, it does not - the web page remains the same, with the visible button not being clicked.

Weird, this only seemed to happen after upgrading to 2022.1.215.0

Pending Review
Last Updated: 08 Feb 2022 12:08 by ADMIN
Pending Review
Last Updated: 21 Oct 2021 12:09 by Zoya Ali

Steps to reproduce: 

  1. Record a sample test on https://demos.telerik.com/kendo-ui/textbox/index. 
  2. Enter name in the KendoInput field. 
  3. Add a step to verify the value of the KendoInput through the highlighting menu and execute these recorded steps. 

Expected: Successful execution.
Actual: The test fails on the verification step and reports that the value of the KendoInput is null. 
Additional note: If the verification is added for the input control (instead of using the KendoInput), it is executed as expected. 

Pending Review
Last Updated: 30 Sep 2021 08:50 by Zoya Ali
Created by: Zoya Ali
Comments: 0
Type: Bug Report
0
The translator for KendoAngularTextbox matches the textbox control in Kendo MVC and records the respective step. The execution of the test is not consistent. 
Pending Review
Last Updated: 09 Feb 2021 15:45 by Ryan

A specific coded steps test cause Chrome to be closed when trying to perform a partial run using Run->To Here. 

The coded step before the navigate one is starting a proxy to log the traffic.

Sample project is provided internally.

Pending Review
Last Updated: 30 Oct 2020 18:37 by Herb

The specific page and the frame, which is not identified from Test Studio, uses a Salesforce component called ForceAlohaPage and it seems there is a custom implementation for the frames in this component. These are not visible in the Windows.Frames collection, which Test Studio uses under Manager.ActiveBrowser.Frame. 

 

Pending Review
Last Updated: 14 Jul 2020 07:52 by Rohan
A specific customer application does not display the Elements menu in recording mode.
Pending Review
Last Updated: 12 Jun 2020 09:51 by Thomas

Trying to open a RadComboBox with

var csBox = Window.Find.ByName<RadComboBox>(ComboBox);
csBox.EnsureClickable();

csBox.SelectItem(1);

Observing the automation shows we are waiting no time for dropdown to open and I am getting exceptions claiming there are no items in the list.

The cause is related to the fact that the public void WaitDropDownAnimation(int millis) method of Telerik.WebAii.Controls.Xaml.Wpf.RadComboBox is not working as expected. 

Workaround: You can use Window.Find.ByType<RadComboBoxItem>().Wait.ForNoMotion(milliseconds); before selecting the item from the dropdown.

 

Pending Review
Last Updated: 14 Oct 2019 10:24 by ADMIN
MT ( Mobile Testing ) keeps closing whenever I tried to connect the Android device .
Pending Review
Last Updated: 11 May 2023 13:30 by ADMIN
 I generated html report using  ArtOfTest.Runner.exe, but when I open the html file in browser,  I'm not able to see the images for Actual or Expected. It's always displays a default images.
Pending Review
Last Updated: 15 Jan 2019 13:25 by Matthew

When used in code Wait.For() certain element's attribute state, does not respect the timeout set to wait. 

Additional details shared internally.