Upload Button Icon Add office photos

Filter interviews by

Sunfra Technologies Senior Test Engineer Interview Questions and Answers

Updated 27 Mar 2024

Sunfra Technologies Senior Test Engineer Interview Experiences

1 interview found

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(1 Question)

  • Q1. Self introduction
Round 2 - Technical 

(1 Question)

  • Q1. Real time scenarios for writing test cases
Round 3 - One-on-one 

(1 Question)

  • Q1. Technical manual testing interview questions
Round 4 - HR 

(1 Question)

  • Q1. HR discussions related to company procedures, rules and regulations

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. Digital testing concepts
  • Q2. What is RS232 & 422
  • Q3. What RPS in power testing
  • Q4. Digital communication
  • Q5. Semiconductor basic information

Interview Preparation Tips

Interview preparation tips for other job seekers - Noting
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed in Nov 2024. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Tell me about yourself
  • Ans. 

    Experienced Senior Test Engineer with a strong background in software testing and quality assurance.

    • Over 8 years of experience in testing web and mobile applications

    • Proficient in test planning, execution, and automation using tools like Selenium and JIRA

    • Skilled in identifying and documenting defects, and working closely with development teams to resolve issues

    • Strong analytical and problem-solving skills, with a keen at

  • Answered by AI
  • Q2. Project details
Round 2 - HR 

(2 Questions)

  • Q1. What is Salesforce ?
  • Ans. 

    Salesforce is a cloud-based customer relationship management (CRM) platform that helps businesses manage their sales, customer service, marketing, and more.

    • Cloud-based CRM platform

    • Helps businesses manage sales, customer service, marketing, etc.

    • Provides tools for automation, analytics, and integration

    • Offers a wide range of apps and services for various business needs

  • Answered by AI
  • Q2. Salesforce CRM
Round 3 - HR 

(2 Questions)

  • Q1. Difference Between Workflow and process builder
  • Ans. 

    Workflow is a declarative automation tool for automating standard processes, while Process Builder is a visual tool for automating business processes.

    • Workflow is based on criteria and actions, while Process Builder uses a visual interface with point-and-click functionality.

    • Workflow can only perform actions on the same object, while Process Builder can work across multiple objects.

    • Workflow can only update fields on the ...

  • Answered by AI
  • Q2. What is automation process in salesforce
  • Ans. 

    Automation process in Salesforce involves using tools like Salesforce Automation, Process Builder, and Apex triggers to automate repetitive tasks and streamline workflows.

    • Salesforce Automation allows users to create rules and triggers to automate tasks like sending emails, updating records, and creating tasks.

    • Process Builder is a visual tool that allows users to automate business processes by creating workflows with po...

  • Answered by AI
Interview experience
1
Bad
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
No response

I applied via Approached by Company and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. Asked me to write a two programs - identifying duplicates words 2. Sum of series of numbers
  • Q2. What is cucumber options
  • Ans. 

    Cucumber options are configuration settings used in Cucumber to customize test execution.

    • Cucumber options can be used to specify features, tags, formats, and more in the test execution

    • Examples include specifying tags to run specific scenarios, setting output formats for test reports, and defining feature files to run

  • Answered by AI
  • Q3. Oops concepts used in my project
  • Ans. 

    In my project, I have used Oops concepts like Inheritance, Polymorphism, Encapsulation, and Abstraction.

    • Inheritance: Reusing code and creating a hierarchy of classes.

    • Polymorphism: Ability to present the same interface for different data types.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit.

    • Abstraction: Hiding the implementation details and showing only the necessary features.

  • Answered by AI
  • Q4. Data providers, invocation count
  • Q5. Find elements, window handles return type
  • Ans. 

    The find elements method returns a list of web elements matching a specified locator. Window handles return type is a set of strings representing unique identifiers for browser windows.

    • Find elements method returns a list of web elements matching a specified locator

    • Window handles return type is a set of strings representing unique identifiers for browser windows

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. ETL tetsing methods, schema, SCD types, string function, some query based on scenario
  • Q2. L2 round - rank, dense rank, rownumber, types of fact, dimensions, duplicate query

Interview Preparation Tips

Interview preparation tips for other job seekers - Questions was easy, need to have knowledge of concepts and hands of experience on sql queries
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
-

I applied via Company Website and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - Technical 

(13 Questions)

  • Q1. Are constructors non static?
  • Ans. 

    Yes, constructors are non-static methods used to initialize objects of a class.

    • Constructors are special methods used to initialize objects of a class.

    • They are non-static, meaning they are called on an instance of the class.

    • Constructors have the same name as the class and do not have a return type.

    • Example: public class Test { public Test() { // constructor code } }

  • Answered by AI
  • Q2. What you use to get elements from the drop down
  • Ans. 

    To get elements from a drop down, I use Selenium WebDriver's Select class

    • Use Select class from Selenium WebDriver to interact with drop down elements

    • Identify the drop down element using its locator

    • Instantiate a Select object with the drop down element

    • Use Select object's methods like selectByVisibleText(), selectByValue(), selectByIndex() to choose an option

  • Answered by AI
  • Q3. Is Select class or interface?
  • Ans. 

    Select is a class in Selenium WebDriver.

    • Select is used for handling dropdowns in Selenium WebDriver.

    • It provides methods to select options by visible text, value, or index.

    • Example: Select dropdown = new Select(driver.findElement(By.id("dropdown")));

    • Example: dropdown.selectByVisibleText("Option 1");

  • Answered by AI
  • Q4. How do you read data from excel
  • Ans. 

    To read data from Excel, use libraries like Apache POI or Openpyxl in Python.

    • Use libraries like Apache POI or Openpyxl in Python to read data from Excel files

    • Identify the Excel file and specify the sheet and cell from which to read data

    • Use appropriate methods provided by the library to extract data from the specified cell or range

  • Answered by AI
  • Q5. What the types of framework you have used
  • Ans. 

    I have used various types of test automation frameworks including data-driven, keyword-driven, and behavior-driven frameworks.

    • Data-driven framework: Used to separate test data from test scripts, allowing for easier maintenance and scalability. Example: TestNG with Excel or CSV files.

    • Keyword-driven framework: Utilizes keywords to represent actions or operations, making test scripts more readable and reusable. Example: R...

  • Answered by AI
  • Q6. Explain about your day to day activity
  • Q7. Array an array list difference
  • Ans. 

    Array is a fixed-size data structure while ArrayList is a dynamic-size data structure in Java.

    • Array is a fixed-size data structure in Java, while ArrayList is a dynamic-size data structure.

    • Arrays can hold primitive data types and objects, while ArrayList can only hold objects.

    • Arrays require a specified size during initialization, while ArrayList can dynamically resize itself.

    • Arrays use square brackets [] for declaratio...

  • Answered by AI
  • Q8. Array list and linked list difference?
  • Ans. 

    Array list stores elements in contiguous memory locations, while linked list stores elements in nodes with pointers to the next node.

    • Array list allows random access to elements based on index, while linked list requires traversal from the beginning to access elements.

    • Insertions and deletions are faster in linked list as it only requires updating pointers, while in array list it may require shifting elements.

    • Array list ...

  • Answered by AI
  • Q9. What are the challenges faced in automation?
  • Ans. 

    Challenges in automation include complex test scenarios, maintenance of scripts, and compatibility issues.

    • Complex test scenarios require thorough planning and execution.

    • Maintenance of scripts is essential to keep them up-to-date with application changes.

    • Compatibility issues arise when automation tools do not support all technologies used in the application.

  • Answered by AI
  • Q10. What are the different types of exception you have seen & how to handle it?
  • Ans. 

    Different types of exceptions include checked, unchecked, runtime, and custom exceptions.

    • Checked exceptions are checked at compile time and must be handled using try-catch or throws keyword.

    • Unchecked exceptions are not checked at compile time and can be handled using try-catch or left unhandled.

    • Runtime exceptions are unchecked exceptions that occur at runtime, such as NullPointerException or ArrayIndexOutOfBoundsExcept...

  • Answered by AI
  • Q11. What do you use for reporting?
  • Ans. 

    I use a combination of tools such as Jira, TestRail, and Excel for reporting.

    • Jira for tracking bugs and issues

    • TestRail for test case management and execution results

    • Excel for creating customized reports and data analysis

  • Answered by AI
  • Q12. Difference between assert and verify?
  • Ans. 

    Assert is used to validate the expected result while verify is used to check the actual result without stopping the execution.

    • Assert is used to validate the expected result and if the assertion fails, the test is marked as failed and stops execution.

    • Verify is used to check the actual result against the expected result but does not stop the execution even if the verification fails.

    • Assert is commonly used for critical ch...

  • Answered by AI
  • Q13. How do you push your code into github?
  • Ans. 

    Pushing code to GitHub involves using Git commands to add, commit, and push changes to a remote repository.

    • Use 'git add .' to stage all changes

    • Use 'git commit -m 'Your commit message here'' to commit changes

    • Use 'git push origin master' to push changes to the master branch on GitHub

  • Answered by AI
Round 2 - Tech-maneagerial 

(1 Question)

  • Q1. Tech and managerial questions were asked

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Not Selected
Round 1 - Aptitude Test 

20 aptitude questions and 50 technical questions

Round 2 - One-on-one 

(10 Questions)

  • Q1. Tell me about your self
  • Q2. Explain automation framework
  • Ans. 

    Automation framework is a set of guidelines, rules, and tools that help in creating and executing automated tests.

    • Automation framework provides structure and guidelines for creating automated tests

    • It helps in organizing test scripts, data, and results

    • Frameworks can be data-driven, keyword-driven, or hybrid

    • Examples of automation frameworks include Selenium WebDriver, TestNG, and Robot Framework

  • Answered by AI
  • Q3. Java code for sorting without using built in function
  • Ans. 

    Sorting array of strings in Java without using built-in functions

    • Create a custom sorting algorithm like bubble sort, selection sort, or insertion sort

    • Compare each pair of strings and swap them if necessary to sort in ascending order

    • Repeat the process until the array is fully sorted

  • Answered by AI
  • Q4. Explain testng annotations and how will we use annotation in our framework
  • Ans. 

    TestNG annotations are used to control the flow of test methods and provide additional information about the test methods.

    • TestNG annotations are used to mark methods as test methods, setup methods, teardown methods, etc.

    • Annotations like @Test, @BeforeMethod, @AfterMethod, @BeforeClass, @AfterClass, @BeforeSuite, @AfterSuite are commonly used in TestNG framework.

    • Annotations help in organizing and prioritizing test metho...

  • Answered by AI
  • Q5. What is testng listener
  • Ans. 

    TestNG listener is an interface that allows users to customize the test execution process.

    • TestNG listeners can be used to perform actions before or after a test method is run.

    • Listeners can be used to generate logs, take screenshots, or perform other custom actions during test execution.

    • Examples of TestNG listeners include ITestListener, ISuiteListener, and IInvokedMethodListener.

  • Answered by AI
  • Q6. What is overriding and where it is used in automation framework
  • Ans. 

    Overriding is a concept in object-oriented programming where a subclass provides a specific implementation of a method that is already provided by its superclass.

    • Overriding allows a subclass to provide a specific implementation of a method that is already provided by its superclass

    • It is used in automation frameworks to customize or extend the functionality of existing methods or classes

    • In automation testing, overriding...

  • Answered by AI
  • Q7. Explain bdd hooks and tags
  • Ans. 

    BDD hooks and tags are used in Behavior-Driven Development to set up preconditions and execute actions before or after scenarios, and to categorize and filter scenarios.

    • BDD hooks are used to set up preconditions and execute actions before or after scenarios

    • Tags are used to categorize and filter scenarios based on certain criteria

    • Hooks can be used to perform setup and teardown actions, such as initializing test data or ...

  • Answered by AI
  • Q8. Explain bdd background keyword
  • Ans. 

    BDD background keyword is used to define common preconditions for all scenarios in a feature file.

    • Used at the beginning of a feature file to define common preconditions

    • Helps in setting up the initial state for all scenarios in the feature file

    • Reduces duplication of steps in scenarios by defining them once in the background

  • Answered by AI
  • Q9. Explain ci/cd pipeline using jenkins
  • Ans. 

    CI/CD pipeline using Jenkins automates the process of integrating code changes and deploying them to production.

    • Jenkins is a popular automation server used for CI/CD

    • CI/CD stands for Continuous Integration/Continuous Deployment

    • In a CI/CD pipeline, code changes are automatically built, tested, and deployed

    • Jenkins pipelines can be defined using a Jenkinsfile which specifies the stages and steps of the pipeline

    • Example: Che...

  • Answered by AI
  • Q10. Explain rest assured and write a code for post and verify the response
  • Ans. 

    Rest Assured is a Java library for testing RESTful APIs. It simplifies API testing by providing a fluent interface to make HTTP requests and validate responses.

    • Rest Assured is commonly used in API automation testing to validate the functionality of RESTful APIs.

    • It allows testers to easily make HTTP requests, set headers, parameters, and body, and validate the response.

    • Here is an example code snippet for posting data an...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Please prepare all concepts in framwork

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Query to find the sum of price per product name for last month
  • Ans. 

    Use SQL query with GROUP BY clause to find sum of price per product name for last month

    • Use SQL query with GROUP BY clause to group by product name

    • Filter the data for last month using WHERE clause

    • Sum the price column for each product name

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is selenium?
  • Ans. 

    Selenium is a popular open-source automation testing tool used for web application testing.

    • Selenium is used for automating web browsers.

    • It supports multiple programming languages like Java, C#, Python, etc.

    • Selenium WebDriver is the most commonly used component for writing test scripts.

    • Selenium IDE is a record and playback tool for creating quick tests.

    • Selenium Grid is used for parallel testing across different browsers

  • Answered by AI
  • Q2. What are the waits available in selenium?
  • Ans. 

    In Selenium, waits are used to make the automation scripts wait for a certain amount of time before executing the next step.

    • Implicit Wait: Waits for a certain amount of time before throwing a NoSuchElementException.

    • Explicit Wait: Waits for a certain condition to occur before proceeding further.

    • Fluent Wait: Waits for a condition to be true with a specified polling frequency.

    • Thread.sleep(): Pauses the execution for a spe

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. What are the oops Concepts in Java?
  • Ans. 

    Oops concepts in Java are the principles of Object Oriented Programming such as Inheritance, Polymorphism, Encapsulation, and Abstraction.

    • Inheritance: Allows a class to inherit properties and behavior from another class.

    • Polymorphism: Allows objects to be treated as instances of their parent class.

    • Encapsulation: Hides the internal state of an object and only exposes necessary functionality.

    • Abstraction: Shows only essent...

  • Answered by AI
  • Q2. Write a program to Duplicate Elements in Array?
  • Ans. 

    Program to duplicate elements in array of strings

    • Iterate through the array and check for duplicate elements

    • Store duplicate elements in a separate array

    • Return the array of duplicate elements

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Program on strings and Array

Sunfra Technologies Interview FAQs

How many rounds are there in Sunfra Technologies Senior Test Engineer interview?
Sunfra Technologies interview process usually has 4 rounds. The most common rounds in the Sunfra Technologies interview process are HR, Technical and One-on-one Round.
What are the top questions asked in Sunfra Technologies Senior Test Engineer interview?

Some of the top questions asked at the Sunfra Technologies Senior Test Engineer interview -

  1. HR discussions related to company procedures, rules and regulati...read more
  2. Real time scenarios for writing test ca...read more
  3. Technical manual testing interview questi...read more

Tell us how to improve this page.

Sunfra Technologies Senior Test Engineer Salary
based on 4 salaries
₹3.1 L/yr - ₹7 L/yr
48% less than the average Senior Test Engineer Salary in India
View more details
Softwaretest Engineer
40 salaries
unlock blur

₹2.7 L/yr - ₹9.3 L/yr

Test Engineer
14 salaries
unlock blur

₹2 L/yr - ₹8.2 L/yr

Software Testing Engineer
14 salaries
unlock blur

₹2.7 L/yr - ₹4.2 L/yr

Senior Software Engineer
11 salaries
unlock blur

₹5.1 L/yr - ₹16 L/yr

Automation Test Engineer
8 salaries
unlock blur

₹2.4 L/yr - ₹6 L/yr

Explore more salaries
Compare Sunfra Technologies with

TCS

3.7
Compare

Accenture

3.9
Compare

Wipro

3.7
Compare

Cognizant

3.8
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview