wt is grey box testing
Answers were Sorted based on User's Feedback
Answer / satish
Grey box testing is a software testing technique that uses a
combination of black box testing and white box testing. Gray
box testing is not a complete black box testing, because the
tester does know some of the internal workings of the
software under test. In grey box testing, the tester applies
a limited number of test cases to the internal workings of
the software under test. In the remaining part of the grey
box testing, one takes a black box approach in applying
inputs to the software under test and observing the outputs.
| Is This Answer Correct ? | 26 Yes | 3 No |
Answer / saurabh
Grey box testing is the combination of black box and white
box testing. Intention of this testing is to find out
defects related to bad design or bad implementation of the
system.
In gray box testing, test engineer is equipped with the
knowledge of system and designs test cases or test data
based on system knowledge.
For example, consider a hypothetical case wherein you have
to test a web application. Functionality of this web
application is very simple, you just need to enter your
personal details like email and field of interest on the
web form and submit this form. Server will get this
details, and based on the field of interest pick some
articles and mail it to the given email. Email validation
is happening at the client side using Java Scripts.
In this case, in the absence of implementation detail, you
might test web form with valid/invalid mail IDs and
different field of interests to make sure that
functionality is intact.
But, if you know the implementation detail, you know that
system is making following assumptions
• Server will never get invalid mail ID
• Server will never send mail to invalid ID
• Server will never receive failure notification for
this mail.
So as part of gray box testing, in the above example you
will have a test case on clients where Java Scripts are
disabled. It could happen due to any reason and if it
happens, validation can not happen at the client site. In
this case, assumptions made by the system are violated and
• Server will get invalid mail ID
• Server will send mail to invalid mail ID
• Server will receive failure notification
Hope you understood the concept of gray box testing and how
it can be used to create different test cases or data
points based on the implementation details of the system.
| Is This Answer Correct ? | 7 Yes | 1 No |
Answer / ajay
grey box tesiting is a combination of both black box and
white box testing. The tester who has programming knowledge
can perform grey box testing.
| Is This Answer Correct ? | 6 Yes | 5 No |
Answer / haroon ali
Grey box is combination of both black box and white box
testing,part of internal may be inspected but limited
modification is allowed.
| Is This Answer Correct ? | 1 Yes | 2 No |
Answer / sudhakar8
Grey box Testing is the new term which evolved due to the
different architectural usage of the system. This is just a
combination of both Black box & white testing. Tester
should have the knowledge of both the internals and
externals of the function.
| Is This Answer Correct ? | 2 Yes | 4 No |
Answer / rohit
Grey box Testing is New Technique. if the Tester is fully
aware the internal mechanism of the application so that he
will perform this Testing to find out the defect and
performance. This Technique is very useful when you have
short period of time for Testing.
| Is This Answer Correct ? | 0 Yes | 2 No |
What is random testing?
what is the difference between RDBMS and DBMS
What is process area in cmmi?
The difference between Testing and Quality Assurance. Basic Difference in the Job profile Job profile
Any Applications In The Market To Help Quality Test Team Members Communicate With Each Other?
I have heard about Zephyr as a good test management system. Would like to hear from those who have actually used it?
How to create stubs? what is the use of Stubs and drivers? who is the responsible person of this?
whatis the diff. between Tracebility matrix and Bidirectional Tracebility matrix?
what is Agile Testing and who will involve and when will u perform this testing ??
If an organisation wants to go for an automated testing basically for Functional testing by using QTP. then at what stage they should proceed for Automation testion. However a vast experience is there in the field of manual testing.
What is the role of Tester in BRS(Business Requirement Specification)phase in V-Model.
Give examples of boundary value and equivalence partitioning test cases.