Please enable JavaScript.
Coggle requires JavaScript to display documents.
TESTING API - Coggle Diagram
TESTING API
-
TESTING TOOLS
SOAP UI:
- Retrieves source document
- Tests powerful data: files, databases, excel
- Creation of complex scenarios and support
JMeter:
- Supports Playback
- Automatically works with CSV files
- Can be used for static and dynamic resource
POSTMAN:
- Used for Automated and Exploratory testing
- Supports Swagger and RAML formats
- Runs, Tests, and has Document/Monitoring fuctions
ApiGee:
- Allows development and monitoring API's
- Tracks API traffic, and error rate
- Designed for digital business
Katalon Studio:
- Supports tests between UI and API verifications
- Supports both SOAP and RESTful requests
- Used for Automated and Exploratory testing
Assertable:
- Provides automated API testing
- Maintains ongoing API tests
- Supports authentication of HTTP responses
QUALITY ASSURANCE
-
-
-
LANGUAGE (codes)
XML (language)
XML is human readable and machine readible:
- <employees>
- <exmployee>
-- <firstName > John </firstName> <lastName>Doe</lastName>
- </employee>
- <employee>
-- <firstName>Anna</firstName> <lastName>Smith</lastName>
-- </employee>
JSON (language)
JSON is much simpler:
- ["firstName":"John,"lastName":"Doe"]
- ["firstName":"Anna","lastName":"Smith"'
- ["firstName":"Peter","lastName":"Jones"]
-
-