Browsed by
Month: February 2017

QA interview questions

QA interview questions

What is a Test Case? What does it include?

A Test Case is a step by step description of the testing process and a set of conditions under which a tester can determine if the application works as expected.

It includes:
– test case description
– test steps
– requirements
– expected result

Make sure that your application works on multiple browsers

Make sure that your application works on multiple browsers

Sometimes we need to create a system exposed to a public web application. We may even need to create it for the broad group of customers. In that case, we need to develop it working on many different types of browser versions. In usual development, we would be forced to open the website in each browser ant test in manually. It would be very beneficial if we can automate it.

We can perform testing on multiple browsers very simple using Selenium WebDriver. We will just use its ability to works with different drivers and configure them.