Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Ness Digital Engineering Team. If you also belong to the team, you can get access from here

Ness Digital Engineering Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Ness Digital Engineering Selenium Automation Interview Questions, Process, and Tips for Experienced

Updated 12 Oct 2020

Ness Digital Engineering Selenium Automation Interview Experiences for Experienced

1 interview found

Interview Questionnaire 

7 Questions

  • Q1. How to handle Multiple popups in selenium?
  • Ans. 

    To handle multiple popups in Selenium, we can use getWindowHandles() and switchTo() methods.

    • Use getWindowHandles() method to get all the window handles

    • Switch to the desired window using switchTo() method

    • Perform actions on the popup window

    • Switch back to the main window using switchTo() method

  • Answered by AI
  • Q2. How to send credentials via URL?
  • Ans. 

    Credentials can be sent via URL by appending them to the URL as query parameters.

    • Append the username and password as query parameters to the URL

    • Encode the username and password using Base64 encoding

    • Example: http://example.com/login?username=admin&password=encoded_password

  • Answered by AI
  • Q3. Difference between Explicit wait and Fluent Wait?
  • Ans. 

    Explicit wait waits for a specific condition while Fluent wait waits for a condition with polling interval.

    • Explicit wait waits for a specific condition to occur before proceeding further

    • Fluent wait waits for a condition with a polling interval and ignores exceptions

    • Explicit wait is used when we know the condition and the maximum time to wait for it

    • Fluent wait is used when we don't know the maximum time to wait for a co...

  • Answered by AI
  • Q4. How to Scroll page to desired ocation?
  • Ans. 

    To scroll page to desired location, use JavaScriptExecutor and scrollTo() method.

    • Create an instance of JavaScriptExecutor

    • Use executeScript() method to execute scrollTo() method

    • Pass the desired location as arguments to scrollTo() method

    • Example: ((JavascriptExecutor) driver).executeScript("window.scrollTo(0, document.body.scrollHeight)");

  • Answered by AI
  • Q5. How to get all the options in a DropDown?
  • Ans. 

    To get all options in a dropdown, use the getOptions() method and store the values in an array of strings.

    • Locate the dropdown element using any of the locators

    • Create a Select class object by passing the dropdown element as a parameter

    • Use the getOptions() method to get all the options in the dropdown

    • Store the options in an array of strings

  • Answered by AI
  • Q6. How to initialize chrome driver?
  • Ans. 

    To initialize Chrome driver, create an instance of ChromeDriver class.

    • Create an instance of ChromeDriver class

    • Set the path of ChromeDriver executable file

    • Use the instance to interact with the browser

  • Answered by AI
  • Q7. How to execute feature file in parallel in BDD Cucumber Framework
  • Ans. 

    To execute feature files in parallel in BDD Cucumber Framework, we can use tools like Maven Surefire plugin or Cucumber-JVM-Parallel-Plugin.

    • Use Maven Surefire plugin to run tests in parallel by adding and tags in pom.xml file

    • Use Cucumber-JVM-Parallel-Plugin to run tests in parallel by adding @CucumberOptions(plugin = {"json:target/cucumber-report/cucumber.json", "com.github.temyers:cucumber-jvm-parallel-plugin:5.0.0"...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Go through all basics

Skills evaluated in this interview

Interview questions from similar companies

I applied via Naukri.com

Interview Questionnaire 

5 Questions

  • Q1. Priority in TestNg
  • Ans. 

    Priority in TestNG determines the order in which test methods are executed.

    • Priority can be set using the 'priority' attribute in @Test annotation

    • Default priority is 0, higher priority is executed first

    • Priority can be negative as well

    • If two methods have the same priority, they are executed in alphabetical order

  • Answered by AI
  • Q2. Difference between simple Java program and maven project
  • Ans. 

    A simple Java program is a standalone program while a Maven project is a build automation tool.

    • A simple Java program is compiled and executed using the command line or an IDE.

    • A Maven project uses a pom.xml file to manage dependencies and build the project.

    • A simple Java program may require manual management of dependencies.

    • A Maven project can easily manage dependencies and build the project with a single command.

    • A simpl...

  • Answered by AI
  • Q3. Why do tags used in cucumber
  • Ans. 

    Tags are used in Cucumber to organize and filter scenarios and features.

    • Tags allow for easy organization of scenarios and features based on their purpose or functionality.

    • Tags can be used to filter which scenarios or features are run during a test.

    • Tags can be added to scenarios or features using the '@' symbol followed by the tag name.

    • Tags can also be used to pass parameters to step definitions.

    • Examples: @smoke, @regre

  • Answered by AI
  • Q4. Difference between TestNg and junit
  • Ans. 

    TestNG is more advanced and flexible than JUnit, with features like parallel testing and data-driven testing.

    • TestNG supports parallel testing while JUnit does not.

    • TestNG allows for data-driven testing while JUnit does not.

    • TestNG has more advanced annotations and reporting features than JUnit.

    • TestNG can be used with both Java and non-Java languages while JUnit is only for Java.

    • JUnit is simpler and easier to learn than T

  • Answered by AI
  • Q5.  How to disable test.
  • Ans. 

    To disable a test, we can comment out the test code or use testNG annotations.

    • Comment out the test code

    • Use testNG annotations like @Test(enabled=false)

    • Use testNG XML file to disable the test

    • Use groups to disable a set of tests

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - The interview was good. Though it was for selenium automation, less questions asked from that. In JD, basic sql and linux was given. No questions asked. More Java concepts and TestNg questions asked

Skills evaluated in this interview

Interview Questionnaire 

5 Questions

  • Q1.  In a page there are two login button available, So will it have same ID?
  • Ans. 

    No, the two login buttons should not have the same ID.

    • IDs should be unique for each element on a page

    • Having two elements with the same ID can cause issues with locating and interacting with the elements

  • Answered by AI
  • Q2. How to write the step execution report/result in the report?
  • Ans. 

    Use TestNG or JUnit framework to generate step execution report/result.

    • Use TestNG or JUnit annotations to mark the start and end of each test step.

    • Use TestNG or JUnit listeners to capture the test results and generate the report.

    • Use reporting libraries like ExtentReports or ReportNG to generate detailed reports with screenshots and logs.

  • Answered by AI
  • Q3. How to switch to the second window using page Title?
  • Ans. 

    To switch to the second window using page title, we can use getWindowHandles() and switchTo() methods.

    • Use getWindowHandles() method to get all the window handles

    • Iterate through the window handles and switch to the desired window using switchTo() method

    • Use getTitle() method to get the title of each window and compare it with the desired title

  • Answered by AI
  • Q4. How will you retrieve all the values from the drop down?
  • Ans. 

    To retrieve all values from a drop down, we can use the getOptions() method and store the values in an array of strings.

    • Locate the drop down element using any of the locators

    • Create a Select class object by passing the drop down element as a parameter

    • Use the getOptions() method to retrieve all the options from the drop down

    • Store the options in an array of strings

  • Answered by AI
  • Q5. What are the collections used in framework?
  • Ans. 

    Collections like ArrayList, HashMap, HashSet are commonly used in Selenium framework.

    • ArrayList is used to store a list of elements

    • HashMap is used to store key-value pairs

    • HashSet is used to store unique elements

    • Collections class is used for sorting and searching

  • Answered by AI

Skills evaluated in this interview

Round 1 - Technical 

(1 Question)

  • Q1. Write a program to remove duplicate character in a string if there are multiple users in an application, and if the buttons in the applications are specific to particular user, you need to perform operatio...
  • Ans. 

    Questions related to Selenium Automation and software testing

    • To remove duplicate characters in a string, use a loop and a hashset

    • To perform operations on specific buttons for a user, use conditional statements

    • To switch to a particular tab, use the window handle

    • 500 error code in Postman validation indicates a bad request

    • Primary key is a unique identifier for a record in a database

    • Roles and responsibilities in a project

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare for basic java, selenium and error codes, db queries

Skills evaluated in this interview

Interview Questionnaire 

2 Questions

  • Q1. What is precompilaion unit?
  • Ans. 

    Precompilation unit is a compiled code that can be reused by multiple source files.

    • Precompilation unit is created by the compiler from the source code.

    • It contains the compiled code of header files and other dependencies.

    • It can be reused by multiple source files, reducing compilation time.

    • It is also known as precompiled header or PCH.

    • Example: stdafx.h in Visual Studio is a precompiled header file.

  • Answered by AI
  • Q2. About ur future,ur short term goal,why this company

Interview Preparation Tips

Skills: Resume, CGPA
College Name: IIT Kharagpur

Interview Questionnaire 

3 Questions

  • Q1. First 50 Prime Number
  • Ans. 

    The first 50 prime numbers are...

    • Start with 2, the first prime number

    • Check each odd number greater than 2

    • Use trial division to check if a number is prime

    • Stop when you have found 50 prime numbers

  • Answered by AI
  • Q2. How to sort the file in the range (hint provided)
  • Ans. 

    Sorting a file within a range

    • Use a sorting algorithm like quicksort or mergesort

    • Read the file and store the data in an array or list

    • Sort the array or list within the given range

    • Write the sorted data back to the file

  • Answered by AI
  • Q3. Tell me about yourself
  • Ans. 

    I am a passionate software engineer with experience in developing web applications using various technologies.

    • Experienced in developing web applications using HTML, CSS, JavaScript, and frameworks like React and Angular

    • Proficient in backend development with Node.js, Express, and MongoDB

    • Familiar with version control systems like Git and project management tools like Jira

  • Answered by AI

Interview Preparation Tips

Round: Resume Shortlist
Experience: Shortlist cut was 0.0 cgpa
Tips: Need to mention Programming skill in any one of three language C , C++ ,Java

Round: Test
Experience: Test was Average, Many question were from INDIABIX.COM , computer network, operating system ,data structure, c , c++ language
Tips: Understand Data Structure and Algorithm deeply, At least read about computer networks, operating system , DBMS 3-4 times for basic good understand, refer various site
Duration: 180 minutes

Round: Test
Experience: Two question were given , we have to write the code on A4 size sheet
Tips: Deep understanding of STACK AND QUEUE
Duration: 60 minutes

Round: Technical Interview
Experience: Previous Test (2 Questions on A4 size sheet) were discussed and is there any improvement that can be done, discussed each and every step.
Tips: Comments is important using programming
present with demo example (various cases)

Round: HR Interview
Experience: Be calm and show your interest in the company,
ask question about company, what are activity other than techincal technical stuff
Tips: Smile , if possible talk in Hindi - English,Try to Make the interview in discussion

General Tips: Practice Daily , Understand Each and Every Step in Detail , Try to code in A4 size paper then computer
Skill Tips: Read Good Books , Practice Daily

Skills: Algorithms And Data Structures
College Name: IIT Kharagpur

Skills evaluated in this interview

Interview Questionnaire 

19 Questions

  • Q1. Tell me about yoruself
  • Ans. 

    I am a passionate software engineer with experience in developing web applications and a strong background in computer science.

    • Experienced in developing web applications using technologies such as HTML, CSS, JavaScript, and React

    • Strong background in computer science with knowledge in algorithms and data structures

    • Passionate about learning new technologies and solving complex problems

  • Answered by AI
  • Q2. Tell me about your projects
  • Ans. 

    I have worked on various projects including a web application for inventory management and a mobile app for fitness tracking.

    • Developed a web application using React for inventory management

    • Created a mobile app using Flutter for fitness tracking

    • Implemented RESTful APIs for communication between frontend and backend systems

  • Answered by AI
  • Q3. Area of interest
  • Ans. 

    My area of interest is artificial intelligence and machine learning.

    • I have experience in developing machine learning models for predictive analytics.

    • I am interested in natural language processing and computer vision applications.

    • I enjoy exploring deep learning algorithms and neural networks.

    • I have worked on projects involving recommendation systems and image recognition.

  • Answered by AI
  • Q4. What are features of C++?
  • Ans. 

    C++ is a high-level programming language with features like object-oriented programming, templates, and memory management.

    • C++ supports object-oriented programming concepts like encapsulation, inheritance, and polymorphism.

    • Templates allow generic programming and code reusability.

    • C++ provides low-level memory manipulation through pointers.

    • Standard Template Library (STL) provides a collection of classes and functions for ...

  • Answered by AI
  • Q5. What is Big Data?
  • Ans. 

    Big Data refers to large and complex data sets that cannot be processed using traditional data processing methods.

    • Big Data is characterized by the 3Vs - Volume, Velocity, and Variety.

    • It requires specialized tools and technologies such as Hadoop, Spark, and NoSQL databases.

    • Examples of Big Data include social media data, sensor data, and financial market data.

  • Answered by AI
  • Q6. Write a program for reversing a string without using string function
  • Ans. 

    Program to reverse a string without using string function

    • Iterate through the string from end to start and append each character to a new string

    • Use a loop to swap the first and last characters, then move towards the middle until the entire string is reversed

    • Convert the string to a character array, then swap the first and last elements until the entire array is reversed

  • Answered by AI
  • Q7. What is your role in final year project?
  • Ans. 

    I was responsible for designing and implementing the project's database and backend functionality.

    • Designed the database schema and created the necessary tables

    • Implemented the backend functionality using Java and Spring framework

    • Collaborated with team members to integrate the frontend and backend components

    • Tested the application and fixed any bugs or issues that arose

    • Presented the project to the faculty and received pos

  • Answered by AI
  • Q8. What are keys in database and why do we use them?
  • Ans. 

    Keys in a database are unique identifiers used to establish relationships between tables and ensure data integrity.

    • Keys are used to uniquely identify records in a database table.

    • Primary keys are used to uniquely identify each record in a table.

    • Foreign keys establish relationships between tables.

    • Keys help enforce data integrity and maintain consistency in the database.

    • Examples of keys include primary keys, foreign keys,

  • Answered by AI
  • Q9. What are issues in cloud?
  • Ans. 

    Issues in cloud include security, downtime, vendor lock-in, and data privacy.

    • Security concerns such as data breaches and unauthorized access

    • Downtime and service interruptions affecting business operations

    • Vendor lock-in and limited flexibility in choosing cloud providers

    • Data privacy and compliance with regulations such as GDPR and HIPAA

  • Answered by AI
  • Q10. Brief introduction of your project and algorithms used in project
  • Ans. 

    Developed a web application for online shopping using React and Node.js

    • Implemented user authentication and authorization using JSON Web Tokens (JWT)

    • Used MongoDB as the database to store user and product information

    • Implemented a search feature using Elasticsearch to provide fast and accurate search results

    • Integrated Stripe payment gateway for secure online transactions

  • Answered by AI
  • Q11. Flow diagram of final year project
  • Ans. 

    The flow diagram of my final year project showcases the step-by-step process of its execution.

    • The flow diagram illustrates the sequence of activities and their dependencies.

    • It helps in understanding the overall structure and logic of the project.

    • Each step in the diagram represents a specific task or action.

    • Arrows indicate the flow of control or data between different steps.

    • Decision points are represented by diamond-sha...

  • Answered by AI
  • Q12. Why do we normalise our database?
  • Ans. 

    Normalisation reduces data redundancy and improves data integrity in a database.

    • Prevents data duplication and inconsistencies

    • Simplifies database maintenance and updates

    • Improves query performance

    • Enforces data integrity and consistency

    • Follows best practices for database design

    • Examples: breaking down a customer table into separate tables for orders, addresses, and payments

    • Examples: creating a separate table for product ca...

  • Answered by AI
  • Q13. Tell me about yourself
  • Ans. 

    I am a passionate software engineer with experience in developing web applications and a strong background in computer science.

    • Experienced in developing web applications using technologies like HTML, CSS, JavaScript, and React

    • Strong background in computer science with knowledge of algorithms and data structures

    • Familiar with agile development methodologies and version control systems like Git

  • Answered by AI
  • Q14. Tell me your 5 qualities so that i should hire you
  • Ans. 

    I am a problem solver, team player, quick learner, detail-oriented, and have strong communication skills.

    • Problem solver - I enjoy tackling complex problems and finding innovative solutions.

    • Team player - I work well with others and value collaboration in achieving goals.

    • Quick learner - I am able to pick up new technologies and concepts quickly.

    • Detail-oriented - I pay attention to the smallest details to ensure high-qual...

  • Answered by AI
  • Q15. Do you have any engineering background
  • Ans. 

    Yes, I have a Bachelor's degree in Computer Engineering.

    • Bachelor's degree in Computer Engineering

    • Experience in software development

    • Knowledge of engineering principles applied to software design

  • Answered by AI
  • Q16. How was your day?
  • Ans. 

    My day was productive and challenging, with a lot of problem-solving and collaboration.

    • Completed a major coding project ahead of schedule

    • Participated in a brainstorming session with team members

    • Solved a tricky bug in the codebase

    • Attended a virtual meeting with stakeholders

  • Answered by AI
  • Q17. Do you have relatives in Pune? or what about your accomodation?
  • Ans. 

    No, I do not have any relatives in Pune. I have arranged for my accommodation in a rented apartment near the office.

    • No relatives in Pune

    • Accommodation arranged in a rented apartment near the office

  • Answered by AI
  • Q18. Do you know about My Passion Challenge test?
  • Ans. 

    Yes, My Passion Challenge test is a coding competition for software engineers.

    • My Passion Challenge test is a coding competition that evaluates the coding skills of software engineers.

    • It is designed to test problem-solving abilities, algorithmic thinking, and coding proficiency.

    • Participants are given a set of coding challenges to solve within a specified time limit.

    • The challenges can range from simple to complex, coveri...

  • Answered by AI
  • Q19. Any higher studies plan?
  • Ans. 

    Considering pursuing a Master's degree in Computer Science to deepen knowledge and advance career.

    • Considering pursuing a Master's degree in Computer Science

    • To deepen knowledge and advance career

    • Examples: MS in Computer Science at XYZ University, online courses in AI and Machine Learning

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: In this section, you will find questions from all technical subjects like data structures,design and analysis of algorithms, software testing and quality assurance , computer networks, database management , C , C++ , C# and java. The difficulty level is moderate.
For this section you can study from indiabix.com
In the 2nd section, we have to write a program and also have to follow constraints mentioned in the problem statement. Programs are based on file handling, structure and union , string operations,etc.
In 3rd round, you have to write an essay of about 10 lines. Essay topics are general issues like I had 'Traffic issues in India'.
Tips: Stick to your basics.
All the concepts should be clear.
Programs should be syntactically correct. Try to mention comments and also display output as expected. It adds up to your representation even if your logic goes wrong. :)
For essay writing round, there should be no grammatical mistakes.
Time management is very important.

Duration: 90 minutes
Total Questions: 75

Round: Technical Interview
Experience: My first technical round really went well. So I was qualified for Hr round.
But some candidates had to appear for 2 technical interviews.

Tips: Stay confident about your answers and also mention area of interest in your resume and go through your resume before going to interview. 60% of technical interview is on projects. They are really interested in ideas used in your projects. Explain all the projects in detail like which front end and back end used.
Every round is an elimination round. So give your best and stay confident.


Round: HR Interview
Experience: Hr round is also elimination round. And you should have good communication skills.
There is always backfiring so you have to be attentive and confident.
Always try to reply in a positive way.
Tips: You should read about the history of company and also the domains on which they are working and their recent projects.

Skills: Verbal Communication Skills
College Name: Jawaharlal Nehru Engineering College

Skills evaluated in this interview

Interview Preparation Tips

Round: Test
Experience: An objective type written test. Around 60 questions in 1 hr which included around 10 aptitude questions and others from C, Datastructure, Operating System, Computer Network, Software Engineering, Database etc

Round: Technical Interview
Experience: Questions were mainly from Datastructure, Operating System and Database. I was asked to reverse a linked list using a stack and write some sql queries which included use of JOIN.

Round: HR Interview
Experience: At each stage, we get to know if we are still in the selection process of have been eliminated.They were looking for right logic rather than perfect syntax.

College Name: NA

Interview Preparation Tips

Round: Test
Experience: Apti was quite easy . In Basic CS concepts software engineering is prominent.
Tips: Brush up Software Engineering before written test
Duration: 90 minutes
Total Questions: 50

College Name: NIT BHOPAL

I was interviewed before Aug 2016.

Interview Preparation Tips

Round: General and technical aptitude
Experience: There were questions on basics of programming and general questions on verbal,reasoning and quantitative.
Tips: Time will be short to answer all so keep watch on time

Round: Group Discussion
Experience: They segregated us in to batches and in our team there were 10 members.
Tips: Easy round
Duration: 15 minutes

Round: Telephonic
Experience: They tested my communication skill in that round

College Name: Dhanalakshmi college of engineering

Ness Digital Engineering Interview FAQs

What are the top questions asked in Ness Digital Engineering Selenium Automation interview for experienced candidates?

Some of the top questions asked at the Ness Digital Engineering Selenium Automation interview for experienced candidates -

  1. How to execute feature file in parallel in BDD Cucumber Framew...read more
  2. How to handle Multiple popups in seleni...read more
  3. How to get all the options in a DropDo...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.6
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 2.9k Interviews
Mphasis Interview Questions
3.4
 • 791 Interviews
CitiusTech Interview Questions
3.4
 • 270 Interviews
View all

Fast track your campus placements

View all
Senior Software Engineer
768 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
508 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Member Technical Staff
229 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
220 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior QA Engineer
202 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Ness Digital Engineering with

TCS

3.7
Compare

Wipro

3.7
Compare

Infosys

3.6
Compare

HCLTech

3.5
Compare
Did you find this page helpful?
Yes No
write
Share an Interview