Hi Team,
I had been using Telerik for UI automation but never faced this type of issue earlier. So the problem is while recording the test the screen doesn't changes but while running or testing the same test case screen size changes unexpectedly which results in failed step as after the screen changes the location of the elements also changes.
PFA - Actual Image & Expected Image.
I have a test list where there are few tests in it and its set to re-run failed tests. If a test fails it re-runs and passes after re-run but the entire test list is marked as failed in HTML results.
The same test list is showing green (passed) in Test Studio and Executive Dashboard. The issue is only in the exported results.
I have a WPF UI that has multiple combo boxes, about a data grid. The Combo boxes are used to change what appears in the grid. When I am creating a test to verify the values of the items in the list, I am trying to get the hover menu to come up, but it quickly disappears when I try to get the menu item for a combobox item selected.
As a work around, I have been able to click Alt-Tab, and then go back to the screen, and that keeps the menu open for me to select an item, but I shouldn't have to do this.
I recently upgraded to Visual Studio 2022 and the IDE is now a 64-bit process. I am unable to assign a dataset while in VS 2022.
However, this still works within Test Studio...
The data driven data from Excel is trimmed to 255 characters, even though it is longer. This does not happen in all cases and I have attached a sample Test Studio project with test data that reproduces the issue.
I have an expanded dropdown and I want to capture its state in a screenshot. I used the method below, but it excludes the dropdown that is open.
ActiveApplication.MainWindow.Capture();
The workaround is to capture the whole desktop with a predefined step in Test Studio.
TestStudio returns 0 for the number of tabs in a Kendo Angular TabStrip control. The behavior is reproduced on the demo page of the control - https://www.telerik.com/kendo-angular-ui/components/layout/tabstrip/tabs
Test Studio version is 2021.2.809.0
Using the No Chrome Extension, the dialog window to upload a file doesn't open when running the test. I’m unable to give you access to my testing site, however, I used https://ps.uci.edu/~franklin/doc/file_upload.html to replicate the issue and supplied the Test studio projects for your review.
Chrome: Version 99.0.4844.51 (Official Build) (64-bit)
OS: Microsoft Windows 10 Enterprise
Version: 10.0.19044 Build 19044
Test Studio Welcome screen crashes in specific customer environment.
When starting a project from the Settings.aiis file, it loads correctly, but triggering the Welcome screen results in unexpected error.
Test Config Scenario (sample proj attached):
Test A (Maintest) calls Test B
Test B (filled with local Data) calls Test C
Test C (inheritParentData, should get it's data from Test A) calls Test D
Test D (inheritParentData, should get it's data from Test A as well)
Expected: Upon execution Test B executes all its iterations correctly for each iteration of Test A.
Actual: Test B executes all its iterations, but uses only the first row value for each of the iterations.
Note: If Test C is excluded from the test execution, all iterations from test B are performed correctly.
If Test C and Test D are using their own data instead of inheriting the parent source, the execution is as well as expected.
1. Navigate to https://demos.telerik.com/kendo-ui/autocomplete/index
2. Enter text in the autocomplete input and select the filtered country from the dropdown.
3. The recorded steps are KendoInputValue enter text and KendoListBox select item and these are correctly recorded.
4. Execute the test.
Expected: The steps should enter the text as it is listed in the step and select the country.
Actual: The text from the KendoInputValue enter text step gets entered with capitol letters, although these are small letters in the step. If there is a capitol letter in the step, it is not sent at all.
Example: KendoInputValue enter text 'Great Britain' actually enters 'REAT RITAIN'
Test Studio 2022.1.215
Steps to reproduce:
1. Record a test to navigate to https://www.telerik.com/kendo-angular-ui/components/inputs/textbox/
2. Enter some text in the field and select it with ctrl+A.
3. Press the Del button to delete it.
4. Execute the test.
Expected: The text should be removed with the step to press Del.
Actual: Del is entered as text in the text field.
If the Output panel in Test Studio is unpinned and stays hidden on the side of the window, it pops up each time the project is compiled. It stays open until the focus is set on another pane in the project (mouse click). That way it hides the project and test area.
It is good to improve this behavior and hide the Output pane automatically.
Last updated product done (23-02-2022) to Product version: 2022.1.215.0
After being updated, we have found that tests which already were running correctly with Chrome headless, stopped working.
Those tests had some 'Keyboard KeyPress' steps, with no Code. Now, those steps make fail the wholes test.
We tried to change those steps to Code, and the final result remains the same.
Tests with this type of step, fail:
[CodedStep(@"Keyboard (KeyPress) - Enter (1 times) on 'ELEMENT'")]
public void TEST_CodedStep()
{
ActiveBrowser.ContentWindow.SetFocus();
Pages.PAGE.ELEMENT.ScrollToVisible();
Pages.PAGE.ELEMENT.Focus();
ActiveBrowser.Manager.Desktop.KeyBoard.KeyPress(ArtOfTest.WebAii.Win32.KeyBoard.KeysFromString("Enter"), 150, 1);
ActiveBrowser.WaitUntilReady();
}
}
We added the assembly reference System.Windows.Forms and nothing changes to better ¿Should we need to attach another reference assembly?
We would appreciate if you could help us
Thank you