How can I detect dialog (Logon) existence before handling it ?
Here is a short description of tests structures :
Authentication Test
Someother Test
Currently, in the application being tested, requirements have changed so that in the Authenticate Test, it is really needed to detect a dialog existence before handling it (step 2) : that means Step 2 can be bypassed sometimes but required some others (please, do not ask why :) ).
That leads to a fail (no dialog to is found for handling) or success (Dialog is found).
What we have tried is marking the ContinueOnFailure property of the Step 2 in Authenticate Test to True but, wrong idea : when calling Authenticate Test within Someother Test (test as step), ContinueOnFailure does not ignore the Logon failed step stopping Someother Test execution to step 1.
A workaround for this could be marking Step 1 in Someother Test ContinueOnFailure property also to true but Noo, we already have tons of tests calling it and we dislike this approach.
So, Is there a solution?
Hello Telerik,
When running a test list through the command line, is there an option to attach the results file to the email sent? Trying to find some documentation on it and I'm coming up empty. Any help you could give would be greatly appreciated. Thanks all.
We've just started using recordings of the automated tests. This was fine, until one day the resolution of the tests seems to have dropped in the recordings, and we can't put it back to what it was. The Test Runner is on a machine with 3840x2160 resolution, but the recordings are now always in 1920x1080. In the Test Runner settings, the setting to change the resolution only has one value (1920x1080) and in the dropdown does not offer anything else.
Thanks for helping me find how I can change this configuration.
Test Framework 2019.3.1003.2
Kendo UI jQuery 2019.3.1023
I have this code to test a Kendo UI Upload:
Browser.WaitForElement(10000, $"id={id}").As<HtmlInputFile>().Click();
This used to work in previous versions but now it does nothing and the File Open Dialog is never displayed. If I manually click the button in the browser it works. I do not get any errors.
Hello,
I noticed the line item in the recent release notes - Executive Dashboard: Fix status for not-run tests in Test Results view.
We have updated to the most recent release, but didn't notice this fix was actually implemented. We still see tests that are not executed (because they're in development by example) as a faint fail. I'm not sure I understand why "not completed" can't be input there?
Please see my attachement
Is it possible to extract a value or text from a RadDropDownList? In my test when I use element highlighting I see the a RadDropDownList and a span option.
The RadDropDownList has an extraction for things like item count and visibility but not text or value (which to me would be the most common). The span has an option to extract value, but the only real reason to use the span is because it is part of the drop down list control as it is rendered (Classic mode). One problem with the span is that this creates another element on top of the drop down list element which makes tests harder to maintain and understand, and it isn't associated with the drop down list in any way. The major problem, however, is that the recorder creates find logic with no relation to drop down list and even uses the text content to identify the span. This makes the test fragile and prevents us from reusing an extraction step for tests that use different values in the drop down list.
Am I missing something here? If this just isn't going to work like I think it should is there a better way to accomplish this? Would it be possible to create find logic to locate a span element based on a parent with a specific ID (the ID of the drop down list)?
Hello,
I was wondering if it was possible to connect to a pop-up window and return connection to the original window without having to close the pop-up window? Essentially, I am clicking a link in my original window and it launches a new tab (chrome). The recorder recognizes this and puts a connect to pop-up step. I do a few actions in that tab; but, instead of closing I want to leave that tab open and go to the original window and do a few actions and then return to that pop-up window that was opened and do a few more actions, then close that pop-up window at the end of the test.
What I have tried so far was putting a connect to pop-up to the new tab that is launched, and I tried putting a connect to pop-up step with the original partial URL, but it doesn't seem to actually switch control back to the original window.
Thank you!