Hi,
Somehow my test step properties tab went missing. I can only see 'Step Builder' and 'TeamPulse' in my right pane.
Is there a way to bring it back?
Thanks
I am able to connect to the pop window while recording I can enter and save the values but when I am playing back it connects to the pop up but doesn’t put the values or save them how can it be done
thanks.
Hello I am trying to retrieve data from excel sheet and save it in web app.
lets say I have set of data in excel sheet which I need to transfer or save into the web app where the data will be kept.
in other words we can migrate
so any help will be much appreciated thanks.
Hi
I am trying to debug test studio test script but the Run - -> From Here option is disabled only To Here option is available.
Really want to run section of the script to debug failure .... See attached screenshot.
Appreciate your help in this regard.
Thanks,
-
Padmashree
Hello,
In ALM context, i need to build, deploy, and run the installer of my WPF application before i launch test studio automated test lists on my application:
To do this, is there a better way than :
- create a different test sutdio project for the installer
- Detect if my application is already installed (Uninstall or Install)
- Execute the automated unistall/install process
- Execute the automated test lists for my WPF app.
Or, does Telerik Test Studio have a built-in feature to test a WPF app with its installer ?
Thanks in advance,
Regards.
Arnaud
Hi,
I'm trying to verify calculations done against the inputs in certain text boxes. Is there a way to do this?
For example
Text Box 1 = 5.43
Text Box 2 = 6.00
Text Box 3 = 11.43
I need to be able to verify that the calculation (in this case a sum) of Text Box 1 and 2 are correct in #3, not matter what the value of Text Boxes 1 and 2 are.
Thanks!
Si
Hi,
I am new to Test Studio and have to say it is nice. However, I have come across a problem with how it inherits. My initial thoughts were I would create a base class with specific coded steps for navigation, I could then easily incorporate these in other tests. The following is a very basic idea, the first draft I did was split into it's own class:
public class BaseTestClass : BaseWebAiiTest
{
[CodedStep(@"Go to My Account")]
public void Account_Links_GotoMyAccounts()
{
var pageLink = Find.ByExpression(LinkAttributes.MyAccountPage);
Assert.IsNotNull(pageLink);
Actions.Click(pageLink);
}
}
public class SearchMusic : BaseTestClass
{
[CodedStep(@"New Coded Step")]
public void SearchMusic_CodedStep()
{
var attr = Find.ByContent<
HtmlSpan
>("18");
Assert.IsNotNull(attr);
}
}
The inheritence used in the test studio will no longer pick up SearchMusic_CodedStep() but does find functions from BaseTestClass as in the attached image. As SearchMusic class descends from BaseTestClass, which descends from BaseWebAiiTest. It should pick up all public methods from BaseTestClass and SearchMusic class.
In the simple example above, any new coded functions added, will be added to BaseTestClass class, not SearchMusic class. If BaseTestClass resides within another .cs file then an error is shown.
If the above worked, it would make it a bit easier for my use, and hopefully others.
FYI I do have simple tests like login etc which are used as"Test as Step" when performing other tests.
regards
Si
I used the last version of the test studio,and record a test in the internet explorer browser. I face with 2 issue
1-the same test work in the internet explorer but it failed in the chrome
y test contains a step which needs to upload a file when I want to playback the test the test not working I have to manually upload the file then it works otherwise it not working.
How can fix these issue?
thanks