Entries Tagged 'Testing Tips and resources' ↓

Some Interesting software testing resources

To keep our readers updated on software testing events and activities, I will compile a weekly list of the online resources found. No doubt these resources are quality resources on software testing and you will get insight of software testing industry.

Microsoft last week launched software testing website - Microsoft tester center. James Whittaker Security Architect, Microsoft said “The goal of launching tester center is to provide community of software testers to share knowledge and learn from each other about software testing, day to day job work, testing tools and processes”.

Continue reading →

Regression Testing with Regression Testing Tools and methods

What is Regression Software Testing?
Regression means retesting the unchanged parts of the application. Test cases are re-executed in order to check whether previous functionality of application is working fine and new changes have not introduced any new bugs.

This is the method of verification. Verifying that the bugs are fixed and the newly added feature have not created in problem in previous working version of software.

Continue reading →

How to apply for Software Testing Certification exam?

I have previously written some posts on Software testing certifications.  Many readers don’t know how to apply and prepare for these Testing and QA certifications. I will briefly guide here about the certifications available and the locations where you can give the exams.

Certifications In software Testing some history:

Continue reading →

Web Testing: Complete guide on testing web applications

In my previous post I have outlined points to be considered while testing web applications. Here we will see some more details on web application testing with web testing test cases. Let me tell you one thing that I always like to share practical knowledge, which can be useful to users in their career life. This is a quite long article so sit back and get relaxed to get most out of it.

Let’s have first web testing checklist.
1) Functionality Testing
2) Usability testing
3) Interface testing
4) Compatibility testing
5) Performance testing
6) Security testing

Continue reading →

Black Box Testing: Types and techniques of BBT

I have covered what is White box Testing in previous article. Here I will concentrate on Black box testing. BBT advantages, disadvantages and and How Black box testing is performed i.e the black box testing techniques.

Black box testing treats the system as a “black-box”, so it doesn’t explicitly use Knowledge of the internal structure or code. Or in other words the Test engineer need not know the internal working of the “Black box” or application.

Continue reading →

Types of software Testing

Software Testing Types:

Black box testing - Internal system design is not considered in this type of testing. Tests are based on requirements and functionality.

White box testing - This testing is based on knowledge of the internal logic of an application’s code. Also known as Glass box Testing. Internal software and code working should be known for this type of testing. Tests are based on coverage of code statements, branches, paths, conditions.

Continue reading →