Reputation: 12906
We will soon be testing an application which provides a REST interface so my first idea was to use soapUI Pro as I have used it extensively for SOAP based applications. However I need a tool which can automate test for
I can't go into detail but the application under test works basically like this:
Currently I'm using soapUI Pro for REST and TestComplete for GUI testing but I need a tool which combines both. Do you have any ideas?
Upvotes: 0
Views: 440
Reputation: 1714
Visual Studio (for Testers, or Ultimate) has Web Tests (coded in C# and non-coded) that could hit your REST service, and UI Tests for GUI apps, that could fit the bill.
Web Tests: http://msdn.microsoft.com/en-us/library/ms182538(v=VS.80).aspx
Coded UI Tests: http://msdn.microsoft.com/en-us/library/dd286726.aspx
Upvotes: 1