What is method API Testing? [closed] - api

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 3 years ago.
Improve this question
My question maybe silly, but anyone can help me ? I have a question, i read in the internet: "API testing won't concentrate on the look and feel of an application.". It is the black box testing methods, so i need to use the white box testing methods or associate 2 method ?

That phrase means that when you test API you only deal with the data that is returned from the server (unlike UI testing when it also matters how the output is rendered). When you test API you can apply black-box testing techniques sine you know what the input should be and what output you expect.
White-box testing is the technique which is to be rather applied by developers who develope the API functionality.

Related

BDD and API testing [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 2 years ago.
Improve this question
Hi I know that BDD with selenium can be used to test user interfaces.
I also know that APIs could be tested using Gherkin.
My question is, should APIs be tested using Gherkin? Is it the right tool for the job?
BDD aims to create a shared understanding of how an application should behave by discovering new features based on concrete examples. Key examples are then formalized with natural language following a Given/When/Then structure
For that you use Gherkin. On which layer you then automate is another decision.
This can be the UI layer, or some API service layer below.
So yes, Gherkin is the right tool for the job.
Source: https://specflow.org/bdd/

Can we automate APIs usiing testCafe? [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 3 years ago.
Improve this question
Caw we automate APIs using testCafe? I have a requirement to automate both Web & APIs together, I mean after doing some actions on the UI, I need to test relevant APIs.
I'm not sure if I understand well your needs but if you want to check the result of an api request I guess you'll need the RequestLogger : a hook you can add to your test on some specific api's urls and then in your test you will be able to check what the request contains.
Documentation here: https://devexpress.github.io/testcafe/documentation/test-api/intercepting-http-requests/logging-http-requests.html

How to start making a game engine in C# [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
How would i go about making a game engine from scratch, i know that this is a very hard task and the final engine will not be able to compete with an engine like Unreal or Unity.
I only plan to use this to get better at programming and if it helps i'm using C#.
Check: http://www.gamefromscratch.com/post/2013/06/14/A-tutorial-series-on-building-a-game-engine-from-scratch-almost-literally.aspx
You may also want to check more interactive tutorials such as those on
Udemy, which cost some money but offer a much more interactive environment. I'm sure you will be able to find a C# game engine guide on there.

What is the difference between mobile application testing and web application testing [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
please friends help me out
1) what is the difference between mobile application testing and web application testing?
2) what is adhoc testing?
3) differences between sanity and smoke testing
for mobile application testing we will have to handle some specificities like playing around with touch interface, the different sensors of the phone , connectivity quality etc. This is a very broad topic. I would recommend to follow this blog
wikipedia is your friend
You can find some definitions there but I think it does not really matter so much. Most of the people don't make the difference between the two terms. Just think of it as "quick tests to get an idea on the overall quality of my SUT" or "is it broken or can I go on and do more in-depth testing".

How to write SRS for a particular task/enhancement in an application [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 1 year ago.
Improve this question
I need to prepare a Software Requirements Specification Document for a small enhancement within an JAVA application.
I have tried goggling for the same but found the samples for whole application whereas I am preparing SRS for a small enhancement within an application.
Can anybody suggest the links or suggestions for preparing the SRS.
As you realized by yourself what you're asked isn't a Requirements Specification, which usually covers the whole set of requirements for a software.
What you've been asked is a Change Request, and it must be merged in the existing SRS. However something tells me that there's no SRS for the software you're dealing with, as your management doesn't know the difference between both...