Automation Testing Interview Questions
Automation Testing Interview Questions
Q #5) How do you identify the test cases which are suitable for automation?
Answer: Identifying the appropriate test cases for automation is the most important step
towards automation.
Q #6) Can you achieve 100% automation?
Answer: 100% automation would be difficult to achieve because there would be many
edge test cases and some cases that are executed seldom. Automating these cases
which are not executed that often will not add value to the automated suite.
Q #7) How to decide the tool that one should use for Automation testing in their
projects?
Answer: In order to identify the tool for Automation testing in your project:
a) Understand your project requirements thoroughly and identify the testing scenarios
that you want to automate.
b) Search for the list of tools that support your project’s requirements.
c) Identify your budget for the automation tool. Select the tools within your budget.
d) Identify if you already have skilled resources for the tools. If you don’t have the
necessary skilled resources then identify the cost for training the existing resources or
hiring new resources.
e) Now compare each tool for key criteria like:
• How easy is it to develop and maintain the scripts for the tool?
• Can a non-technical person also execute the test cases with little training?
• Does the tool support different types of platforms like web, mobile,
desktop, etc based on your project requirements?
• Does the tool have a test reporting functionality? If not, is it easily
configurable for the tool?
• How is the tool for cross-browser support for web-based applications?
• How many different testing types can this tool support?
• How many languages does the tool support?
f) Once you have compared the tools, select the tool which is within your budget and
support your project requirements, and gives you more advantages based on the key
criteria mentioned above.
Q #8) Currently I do not have any automation in place in my project, but now I
want to implement automation, what would be my steps?
Answer:
• First, identify which type of testing/test cases you want to automate.
• Identify the tool
• Design the framework
• Create utility files and environment files.
• Start scripting
• Identify and work on reporting.
• Allocating time for enhancing and maintaining the scripts.
Steps required for getting Automation Testing in place for a project include:
• Understand the advantages and disadvantages of automation testing and
identify the test scenarios which are suitable for automation.
• Select the automation tool that is best suited for automating the identified
scenarios
• Find the tool expert to help in setting up the tool and required environment
for executing the test cases using the tool.
• Train the team so that they can write scripts in the programming language
that the tool supports.
• Create the test framework or identify the already existing one that meets
your requirements.
• Write an execution plan for OS, browsers, mobile devices, etc.
• Write programming scripts for manual test cases to convert them into
automated test cases.
• Report the test case status by using the reporting feature of the tool.
• Maintain the scripts for ongoing changes or new features.
Q #9) How do you decide which tool you have to use?
Answer: Concluding which tool is best suitable for the project requires a lot of
brainstorming and discussions.
Q #10) Once you identify the tool what would be your next steps?
Answer: Once we finalize the tool, our next step would be to design the framework.
Q #11) What is a framework?
Answer: A framework is a set of the structure of the entire automation suite. It is also a
guideline, which if followed can result in a structure that is easy to maintain and
enhance.
These guidelines include:
• Coding standards
• Handling the test data
• Maintaining and handling the elements (object repository in QTP)
• Handling of environment files and properties file
• Reporting of data
• Handling logs
Q #12) What are the attributes of a good framework?
Answer: The characteristics include:
• Modular: The framework should be adaptable to change. Testers should
be able to modify the scripts as per the environment or login information
change.
• Reusable: The commonly used methods or utilities should be written in a
common file that is accessible to all the scripts.
• Consistent: The suite should be written in a consistent format by
following all the accepted coding practices.
• Independent: The scripts should be written in such a way that they are
independent of each other. In case one test fails, it should not hold back
the remaining test cases (unless it is a login page)
• Logger: It is good to have implemented the logging feature in the
framework. This would help in case our scripts run for longer hours (say
nightly mode), if the script fails at any point of time, having the log file will
help us to detect the location along with the type of the error.
• Reporting: It is good to have the reporting feature automatically
embedded into the framework. Once the scripting is done, we can have
the results and reports sent via email.
• Integration: Automation Framework should be such that it is easy to
integrate with other applications like continuous integration or triggering
the automated script as soon as the build is deployed.
Q #13) Can you do without a framework?
Answer: Frameworks are guidelines and not mandatory rules, so we can do without a
framework, but if we create it and follow it, enhancing and maintaining would be easy to
implement.
Q #14) What are the different types of the Automation tool that you are aware of?
Answer: Open source tool like Selenium, JMeter, etc.
Paid tools like QTP, Load Runner, Ranorex, RFT, and Rational Robot.
Q #22) How do you select which automation tool is best suited for you?
Answer: Selecting the automation tool depends upon various factors like:
• The scope of the application which we want to automate.
• Management overhead like cost and budget.
• Time to learn and implement the tool.
• Type of support available for the tool.
• Limitation of the tool
Q #23) What do you think holds the testers back to do automation? Is there a way
to overcome it?
Answer: The major hurdle for testers is to learn programming/coding when they want to
automate. Since testers do not code, adapting to coding is a bit challenging for testers.
We can overcome it by:
• Collaborating with developers when automating.
• Considering that automation is the responsibility of the whole team and
not only of the testers.
• Giving a dedicated time and focus on automation.
• Getting proper management support.
You can save these automation testing interview questions as a pdf and print for further
reading.
It creates an abstraction layer between the modules, thus any modifications in test
scripts for one module do not affect any other modules.
Advantages:
• Reduces the number of test scripts that are required to be executed. We
execute the same script multiple times with different data.
• Less coding for automation testing.
• Greater flexibility for maintaining and fixing the bugs or enhancing the
functionality.
• Test data can be created even before the automated system for testing is
ready.
Disadvantages:
• Only similar test cases with the same set of execution steps can be
combined for multiple sets of data. The different set of execution steps
require a different test case.
(iii) Keyword-Driven Testing framework:
It is an application-independent testing framework that uses data tables and self-
explanatory keywords. Keywords explain the actions to be performed on the application
under test and the data table provides the input and expected output data.
Advantages:
• Less coding and the same script can be used for multiple sets of data.
• Automation expertise is not required for creating a test case using the
already existing keywords for actions.
• Same keywords can be used across multiple test cases.
Disadvantages:
• This framework is more complicated as it needs to take care of the
keyword actions and also the data input.
• Test cases get longer and complex thereby affecting the maintainability of
the same.
(iv) Hybrid Testing framework:
This framework is a combination of all the above-mentioned testing frameworks (
Modular, Data-driven, and Keyword-driven).
In this framework, the test cases are developed from modular scripts by combining them
in the modular testing framework. Each of the test cases uses a driver script that uses a
data file as in the data-driven framework and a keyword-based action file.
Advantages:
• Modular and easy to maintain.
• Less coding can take care of more test cases.
• One test case can be executed with multiple sets of data.
Disadvantages:
• Complex to read, maintain and enhance.
Q #28) When do you prefer Manual testing over Automation testing?
Answer: We prefer manual testing over automation testing in the following cases:
• The project is short-term and writing scripts will be time-consuming and
costly when compared to manual testing.
• Flexibility is required. Automated test cases are programmed and run in a
specific way of configurations.
• Usability testing needs to be performed.
• Applications/module is newly developed and has no previous test cases.
• Ad-hoc or exploratory testing needs to be performed.
Q #29) Is Automation testing in agile Methodology useful or not?
Answer: Automation testing is useful for regression, smoke or sanity testing. All these
types of testing in the traditional waterfall model happen at the end of the cycle and
sometimes if there are not many enhancements to the application, we might not even
have to do regression testing.
Whereas, in agile methodology, every iteration requires executing the regression test
case as some new functionalities is added.
Also, the regression suite itself keeps growing after each sprint as the functional test
cases of the current sprint module need to be added to the regression suite for the next
sprint.
Thus, Automation testing in agile methodology is very useful and helps in achieving
maximum test coverage in less time of the sprint.
A framework is required to give a set of guidelines that everyone has to follow to have
maintained readability, reusability, and consistency in the test scripts. A framework also
provides one common ground for reporting and logging functionality.
Q #33) How will you automate basic “login” functionality test cases for an
application?
Answer: Assuming that the automation tool and framework is already in place of the test
environment.
To test the basic “Login” functionality:
• Understand the project requirement: Login functionality will have a
username textbox, a password textbox, and a login button.
• Identify the Test scenarios: For login functionality, the possible test
scenarios are:
• Blank username and password
• Invalid username and password
• A valid username and invalid password
• Valid username and password
• Prepare a Data input file with the data corresponding to each scenario.
• Launch the tool from the program.
• Identify the username field, password field, and the login button.
• For each test scenario, get the data from the data file and enter into the
corresponding fields. Program click on the login button after entering the
data.
• Validate the error message for negative scenarios and the success
message for positive scenarios in the test script with the help of
assertions.
• Run the test suite and generate the report.
Q #34) Is Automation testing a Black box testing or White-box testing?
Answer: Automation testing is mostly a black box testing as we just program the steps
that a manual tester performs for application under test without knowing the low-level
design or code of the application.
Sometimes, automated test scripts need access to the database details that are used in
the application under test or some more coding details and thus can be a type of white-
box testing.
Thus automated testing can be both black or white box type of testing depending on the
scenarios in which automation is performed.
Q #35) How many test cases have you automated per day?
Answer: Well, the number depends on the complexity of the test cases. When the
complexity was limited, I was able to automate 5 to 6 test cases per day. Sometimes, I
was able to automate only one test case for complex scenarios.
I have also broken down my test cases into different components like, take input, do the
calculation, verify the output etc. in case of very complex scenarios and have taken 2 or
more days.
(iii) Complex Calculation test cases: Test cases which involve some complex
calculations to verify a field for an application fall into this category. Complex calculation
results are more prone to human errors hence when automated they give accurate
results.
(iv) Data-driven test cases: Test cases which have the same set of steps and run
multiple times with the change of data are known as data-driven test cases. Automated
testing for these kinds of test cases is quick and cost-effective.
(v) Non-functional test cases: Test cases like load tests and performance tests require
a simulated environment with multiple users and multiple hardware or software
combinations.
Setting up multiple environments manually is impossible for each combination or number
of users. Automated tools can easily create this environment to perform non-functional
testing easily.
Conclusion
These are the main questions that are independent of the automation tool or
programming language. Automation testing interviews also includes tool and
programming language-specific questions depending upon the tool that you have
worked with.
Most of the test automation interview questions are centered on the framework you
develop, so it is recommended that you create and understand your test framework
thoroughly. When I am interviewing, and the candidate has answered my question on
the framework, I also prefer asking a language-specific question (core java in my case).
The questions start from basics of java to write the logic of some basic scenario
like:
• How would you extract a set of text from a given line?
• How would you extract the URL?
• In any web page, at any frame, the number of links and its content change
dynamically, how would you handle it?
• How do you handle images and flash objects?
• How do you find a word in a line?
Answers to all these test automation interview questions are very much specific to
the tool/language that you are using for automating. So before you go for the interview,
brush up your programming skills.
In case you did not get a chance to create your framework and someone else has
created it, then make some time to understand it thoroughly before sitting for the
interview.