Hi,
We have some SoaPUI scripts which are done using Groovy scripts.
Since we have Telerik tests for our project, we are checking for a way to integrate SoapUI scripts with Telerik Test studio.
Any method to do it?
Appreciate your responses and experiences
Thanks,
VVP
Hi,
I got a simple problem, I recorded a test and made it work to certain point. How can i record from where i stopped?
Like make the test run then when it reaches the end i continue the recording process?
Thanks
Zaki.
Hi,
We are exploring automated testing of a salesforce applicaiton.
We are being told Selenium is a good tool for Salesforce test automation. Since we have Telerik and i find Telerik better, i am interested to know any experience you had with Telerik Test studio while automating Salesforce apps.
Appreciate any inputs.
Thanks,
VVP
Hello,
Our Web development team is considering TestStudio for their web app QA. We also have a desktop WinForms app with WPF controls hosted via ElementHost.
I understand TestStudio does not support WinForms apps, but is it possible to leverage it for WPF screens embedded in WinForms app?
Thank you.
Hi,
I am using a angular-bootstrap typeahead in a form. While testing i am able to type in the textbox for the search but i can not see the choices popping up nor can i make any choice.
The textbox searches in a pre-loaded array so even after trying Wait, it still did not work.
What is the trick here?
Regards,
Hello,
I am using a trial version of Test Studio, and its my first time with test automation so excuse me newbie questions.
Here goes a scenario.
I got a list of different ids that i need to navigate to and make my tests
What i can do is
1. Start a recorder
2. Navigate to each URL individually and repeat
What i want to do is navigate to a different url e.g. http://domain.com/user={username} and repeat the test with different inputs
So first go will be
Step 1. http://domain.com/user=kim
Step 2. Enter FirstName Kim
Step 3. LastName Yahun
Step 4 .Click submit
then
http://domain.com/user=clara
then goto step 2 but enter clara and jack instead
How do i achieve this?
Please refer me to any videos
Thanks and sorry for the long post
Hi,
I read on this forum that there is no possibility to open a new tab in IE. OK, fine with that, but the question is now can I open new window and keep session from the first window? I have application which stores a session that is used all over the pages. I need to open a new tab/window and keep session from the first tab/window. SO in short I'm trying to replicate copy paste of the URL from first tab in the second tab and not loose session from the first tab. How can I do that?
BR, Jurij
I was originally working with chrome, but I changed over to IE b/c I needed the Image validation Tools(they're not in chrome).
I had already made most of my tests and they were working just fine BUT when I started running them in IE I found my tests that try to fire an anchor onClick didn't work and I tried again in chrome to make sure and they still work there. This is my method I made...
public void Room_Booking_CodedStep1(){ String title = "title="+DateTime.Now.AddDays(1).ToString("MMMM") + " " + date.Day; // to alwasy be one day ahead EX "October 29" Element ele = Find.ByAttributes(title); var anchor = new HtmlAnchor(ele); anchor.InvokeEvent(ScriptEventType.OnClick); }the mark up i'm trying to call and i checked that they are the same in both browsers
<a title="October 29" style="color: black;" href="javascript:__doPostBack('ctl00$ctl00$cphBaseMasterBody$cphAuthenticatedRightColumn$QuickBook1$calView','5780')">29</a>