Is there any solution to solve this issue?
Thanks & Best Regards
Candice Weng
Hi everone,
We tried the demo of Test Studio, but the Testing Framework should be sufficient for us as we can code our tests and therefore do not need Test Studio.
I would like to uninstall Test Studio and install Testing Framework on my machine. I need to do this as when I try and update the Testing Framework the Telerik Control Panel states that I can't do this as I have there is "Incompatible Software Installed" that is blocking me from doing upgrading (presumably the old instalation of Test Studio).
How do I uninstall Test Studio? I tried using the .exe installer (TestStudio_Ultimate_Setup_2016_3_0928_5_Trial.exe), but there did not seem to be any option to uninstall.
Many thanks in advance for your help with this!
Hi,
I've played a little with Telerik Test suite to familiarize myself with the tool. I've used many other softwares with an object repository before, but here I encounter some problems and I would like to know how to solve them..
As an example; I have a webSite that have a common header for all it's pages. When I use the recording function, I notice that, for each links in the header, it creates a different element in a different page. Problem that can be solved by changing Setting->Recording->CompareMode to 'Base URL'. But now, all of the elements that I create are created in the same 'folder' of the element explorer (The base page).
Is there a way to have a 'hybrid' solution where some elements are independant of the current page (Like the header/footer) and some elements are dependant of the current page (Like the content of the page) in the object explorer?
Worst case scenario, if, because of my needs, I'm forced to always use "Setting->Recording->Compare Mode = Base URL", Is there a way to manually group different elements to add more visibility in my project? (A kind of 'folder', if I can use the term).
---
Another question that might have the same answer than the first one:
Now, with more and more webSite that use URL Routing, it is possible to link two or more pages with different URL has being the same page?
Example::
On my webSite, the following URLs are linked to the same page, but are in different languages
- www.MyImaginaryWebSite.com/ClientList
- www.MyImaginaryWebSite.com/ListeDeClients
I would like to avoid creating all the element of that page in double in my element explorer.
While recording, I used Firefox browser. The recorded steps included uploading a file. My application uses AjaxFileUpload control for file upload.
In the test step, I click on 'Select file', a dialog box appears, I select the required files, press 'open' and then press upload.
While executing, the dialog box doesn't appear even though the test step 'click select file' passes. The test execution hangs at Handle 'FileUpload' dialog step.
I have attached the log and a screenshot of the application.
This is my application Url - https://ctoweb.ovcr.uic.edu
I went through solutions for similar issues discussed in the forum but they don't seem to work.
Hi Telerik,
I have been trying to figure out a way to create automated tests for our application that uses a gojs html 5 canvas. I have noticed two ways so far:
1. Click on specific points (ActiveBrowser.Desktop.Mouse.Click(MouseClickType.LeftClick, 930, 405);). This seems to work provided that the browser always opens in full screen and that the elements in the canvas never change meaning that the tests might become obsolete so I don't believe it being the best approach.
2. There seems to be an HtmlCanvas class that I can't seem to find much information or examples on. I have tried the following:
HtmlCanvas canvas = Find.AllByTagName.FirstOrDefault(w => w.TagName ==
"canvas"
);
var brandNode = canvas.ChildNodes.FirstOrDefault(w => w.TextContent ==
"Brand"
);
HtmlDiv div = brandNode;
div.Click();
This code gives me the following errors:
- 'ArtOfTest.WebAii.Core.Find.AllByTagName(string)' is a 'method', which is not valid in the given context
- Cannot implicitly convert type 'ArtOfTest.WebAii.ObjectModel.Element' to 'ArtOfTest.WebAii.Controls.HtmlControls.HtmlDiv'
Is my approach maybe wrong? What is the best way to resolve this? Where can I get more information regarding accessing the canvas on a browser to generate automated tests?
Thanks in advance
During Test recording, I paused the record highlighted an element->Add Element ->Save Element as a result, Telerik becames not responding the element is not added to repository
Please advice
We're trying Test Studio to see if it fits our needs, and I'm wondering if it's possible to start tests automatically when new build is deployed in TFS, for example.
What would be the best way to do this?
Hello,
I am facing issue in configuring WPF application path, as i clicked on "Record" a pop up to configure the application appeared and after selecting th current running WPF application i clicked on "Select Application" a message is appearing saying that "this is not a valid WPF application to load" .
Please help
Thanks
Deepesh
Hi Team,
My requirement is that i want to skip an iteration if an expected data is found in a row
for example my data table looks like
Flag Username Password
Red red_ted 123
Blue blue_glue 123
Yellow yellow_glow 123
if (Data["Flag"] == "Blue")
{
<Skip Iteration logic>
}
Expected Result is current iteration should be skipped and move to next iteration i.e., row of "Yellow". Please advise how to achieve this