Hi! I have my local computer with Test Studio Ultimate installed (let's call it 'A') and I want to run tests on external computer with Run-time edition ('B').
During testing I write data into Excel file, so, I have added to 'A' reference to Excel.Interop dll via Setting | Script | Add Reference.
When I run tests in 'B' (attached it to 'A' as Scheduling server) I receive compilation error 'Office' not found in current contest'.
How can I install assembly reference to 'B' (Run-time edition doesn't have grafic interface) ?
Hello,
My Team is experiencing the following issue when using Google Chrome Browser:
When Adding Quick Steps: Menu is blank in addition the we are unable to add quick validation steps during play back in Google Chrome browser.
Able to run against Firefox, IE
Details:
The playback application access is URL via SSL and is Https://
Google Chrome Browser version is 57 (latest), same issue with version 56
Test Studio Ultimate Version 2017.1.207.2
Has anyone else experienced this? Also automation has a difficult time running in Chrome in general, multiple test cases fail but not in Firefox.
I have a load test created using existing webtest and also have added a data source to the test. According to what is explained here http://docs.telerik.com/teststudio/features/testing-types/load-testing/data-driving, It should take values from the data source and keep changing the URL for every other virtual user. But In the reports, I can only see the one which I recorded in the script actually.
Can you tell how to achieve the data driven test in this situation,
Hello,
I found that a big report crushes the report viewer. The report we can download from https://drive.google.com/open?id=0B0EHXWVdmSJFc3Zub3JaT2ZqNW8 (CrashReport.zip). One crashes the viewer each time.
As I understood there is a problem with the viewer's system memory size, it is very big.
I need to solve the crash problem, it is above all.
I took a small investigation of the reason for the big report size.
In two attached test projects TestProjectForTelerik_BigReport and TestProjectForTelerik_SmallReport the same test actions are executed (tests set is the same too but there are some differences in test configurations).
1. Load www.telerik.com page
2. Come back to the main page
3. Click on a link to the products. The link is found by content (product's name) from data source (TelerikProducts.xls file, Products sheet)
But different ways are used to run tests in the projects.
In TestProjectForTelerik_SmallReport we start from SmallReportTest (use SmallReport test list from the project) and bind ClickProduct test to the data (the data source) directly.
In TestProjectForTelerik_BigReport we start from BigReportTest (use BigReport test list from the project) and bind IntermediateStep test to the data directly. Data binding is removed from ClickProduct test but this one must inherit the parent data source.
In IntermediateStep test we choose which test will be run next according to data from data source. In IntermediateStep we always run ClickProduct test. Please see comments in the IntermediateStep test for more information.
This way is very needed for my real project.
So, these two projects have very different report size for the small report it is 249674 bytes, for another 989670 bytes. The difference is about 4 times.
If steps count in ClickProduct test or row count in data source increases, size difference will be more.
As I can see in the report from TestProjectForTelerik_BigReport project, there are a lot of duplicated information in the report. The information from StepResults section of ClickProduct test is duplicated in DataIterationResults section of IntermediateStep test.
Please check this. Maybe there is a way to decrease the report size.
And as I said earlier Telerik.TestStudio.ResultsViewer crush must be fixed.
I need your help, thanks.
Right now, the way I handle it is creating a local data grid in the parent test, and using a single row with multiple columns to send the proper data to a Test as Step (usually no more than 5-10 columns), which inherits the parents data source.
Example: There is an individual parent test for individual data tables (lets say I have 10 tables, and 10 parent tests), which will export the data to an MDB file. Test as Step will be used to handle the actual export functionality which requires a file path and table name. It should get these values from the parent test, as this will be used in a bunch of different tests.
I'd like to avoid using coded steps (in each parent) or an external code file because if I need to change an element reference for any reason, it takes forever to update them all.
I know I could also create a single coded step in each parent and use a handful of SetExtractedValue(); and get those from the Test as Steps, instead of using the local data grid.
Any other solutions that I'm overlooking?
Have a simple typeahead box on a web site and I am able to record the actions to enter the text and select from the dropdown list that appears one of the selections. When playing this back it appears that the DOM does not refresh during the test, so I converted the step to a code step and added ActiveBrowser.RefreshDomTree() call. This did not help.
So I added a break point on the failing step to capture the DOM. I then opened the DOM explorer using that option right next to the capture option and hit refresh. Captured the results again (which now has the list items in it). But the test still fails.
There has to be someway to click an option in the list that appears (I could modify the input text that drive the list and get more or less options, but I only want to select a specific one form that list). Thoughts?
Hello,
I am trying to print out the name of the test executing another test as a test as step and was wondering if this can be done? For example lets say i have two tests "A" and "B". They are both Wpf tests and "B" just contains a coded step. Test "A" has a step where it executes "B" as a Test As Step. Is it possible to get the name of Test "A" through the code?
The closest thing I've found was this
http://www.telerik.com/forums/how-to-get-the-test-name-which-i-am-executing-during-run-time
but would only get me the name of "B".
Thanks,