Hi All,
I am excepting an element which sometimes shows up and someother time doesnt and it depends on testcase. But in our code we have something like below.
Element adjustmentDetailsWindow = Manager.ActiveBrowser.Find.ById("viewDetailsContentWindow");
So problem is when window is present, we get correct results, but if window is not present, then we get an exception saying "Object Reference not set to isntance of object"
I put them in try catch block.But is there any better way to avoid exception as well when window is not present.?
Thanks,
VVP
Hi,
When i click on download option in my application, i get a popup saying "Do you want to open or save file.xls" from some website.
Is there any way to read that file name in the popup (Image.jpeg) or in window which appears after Clicking Save as button in dialog(SaveAsWindow.jpeg).
Kindly let me know
Hi,
We are about to purchase Test Studio, but before I have a problem.
Is the Scheduling Server separately licenced?
I want to try emailing the test results to myself, is the scheduling server included to trial version?
Hello Team,
I am working on a application where users with different roles and access rights are involved. The base level user submit a report which has to be approved by other users( user at higher level in hierarchy). Each time a report is submitted, a submission ID is generated which is used for futher correspondence. I have created two fully functional test cases which are:
Test 1: Create abd submit new report
Test 2: Approve Submitted report
I am planning to integrate both the test cases so that whatever submission ID is generated by first test case, can be populated to the 2nd test case. Right now, I am explicitly entering the ID in 2nd case to filter out the report to be approved. Through forums and internet, I got a rough idea that some data binding and coded step is involved but could not figure out the correct solution.Can someone help to achieve this goal?
Thanks
Hi guys,
We are using a web app that needs to run on FF 6.0.1. I had the latest version of firefox, where I could record without any problems.
I had to uninstall it and install a 6.0.1 version. But everytime I get an error(pic.1.). A have enabled the extension, but it still shows the error.
Can you help me please?
Thank you
J.
Is there any way I can decide under which Page of Element Explorer the recorded element should be placed when I explicitly add to element repository during recording.
In My Case the Application Under Test URL changes as version changes so if i already have some elements present for one AUT page and when i want to add new elements to same page while recording on new version of AUT(app under test), it creates new Page under Element Explorer.
Why I need to achieve this is because when I refer to these elements in Coded steps using Pages.XYZ.Element1 pattern I need to remember multiple Pages of element explorer even though they contains locators of a single AUT page.
Please suggest possible solution to this.
Thanks
Hello,
I have several questions conserning Telerik Test Studio. We would like to buy this product but need some additional information.
1. Our main task is RadCharts testing, not only like a control but also like a set of lines, points or something like that. For example, its nesessary for searching two lines intersection point. Can Test Studio give us possibility to reach all these elements programmatically?
2. I've tried to make new Visual C# Test Studio project in Visual Studio 2010 directly and made new test by recorder with several user's actions. After it I tried to edit generated programm code in Visual Studio and run test but changes didn't apply. Break points and debug didn't work too. How can I solve this problem? I'm interested in Visual Studio 2010 only.
Thank you in advance
Hi,
In our automation testing, we use controls directly in scripts
ie.Pages.HtmlPage.textdropdown etc
But recently there was some changes and we spent lots of time replacing each and every statement with new control
So i was thinking to move this "Pages.HtmlPage.textdropdown" to a library file with name "DropdownField" and access it in scripts.
I tried like
1) HtmlSelect dropdown List= Pages.HtmlPage.textdropdown;
2) Pages.HtmlPage.textdropdown DropdownField
But i am getting error like Pages.HtmlPage is a property but used like a type.
Any method for accessing html element from a library ?