Upload Button Icon Add office photos

Filter interviews by

Thomson Reuters Automation Lead Interview Questions and Answers

Updated 17 May 2024

Thomson Reuters Automation Lead Interview Experiences

1 interview found

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

I applied via Naukri.com and was interviewed in Nov 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. How do you check property is already initialized or not in Selenium
  • Ans. 

    To check if a property is already initialized in Selenium, you can use the 'isDisplayed' method.

    • Use the 'isDisplayed' method to check if the property is visible on the web page

    • If the property is visible, it is likely initialized

    • If the property is not visible, it may not be initialized

  • Answered by AI
  • Q2. What is Generics
  • Ans. 

    Generics in programming allow for the creation of classes, interfaces, and methods that operate on specified types.

    • Generics provide type safety by allowing the specification of types at compile time.

    • They enable the creation of reusable code that can work with different data types.

    • Examples include List in C# and ArrayList in Java.

Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

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

(2 Questions)

  • Q1. Software Testing
  • Q2. Application based QA questions
Round 2 - Technical 

(2 Questions)

  • Q1. Software testing, QA and Resume based questions
  • Q2. Automation and programming related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well
Instead of going in depth, focus on a basic and primary questions and be thorough on it
Know everything mentioned in the resume
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Tell me something about Oops concepts
  • Ans. 

    Oops concepts refer to Object-Oriented Programming principles such as Inheritance, Encapsulation, Polymorphism, and Abstraction.

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

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

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

    • Abstraction: Hiding the complex implementation det

  • Answered by AI
  • Q2. What is the difference between Abstract class and Interface
  • Ans. 

    Abstract class can have both abstract and non-abstract methods, while Interface can only have abstract methods.

    • Abstract class can have constructors, fields, and methods, while Interface cannot have any implementation.

    • A class can implement multiple interfaces but can only inherit from one abstract class.

    • Abstract classes are used to provide a common base for multiple classes, while Interfaces are used to define a contrac...

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
No response
Round 1 - Technical 

(2 Questions)

  • Q1. About my experience
  • Q2. About my project and automation work
Round 2 - HR 

(2 Questions)

  • Q1. About my notice period
  • Q2. About my expected ctc

Interview Preparation Tips

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

I applied via Referral and was interviewed in Sep 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

General aptitude and out put realted questions

Round 2 - Coding Test 

Face to face dsa and string manipulations

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(2 Questions)

  • Q1. Explain the challenges faced in Test Automation
  • Ans. 

    Challenges in Test Automation include dynamic UI elements, maintenance of scripts, data management, and flakiness.

    • Dynamic UI elements can cause scripts to fail if not handled properly

    • Maintenance of scripts can be time-consuming as applications evolve

    • Data management is crucial for test data setup and cleanup

    • Flakiness of tests can lead to false positives or negatives

  • Answered by AI
  • Q2. What are the top 3 defects that you have raised in your previous project or role.

Interview Preparation Tips

Topics to prepare for Amadeus QA Automation Engineer interview:
  • Functional Testing
  • Python
  • Selenium
  • Pytest
Interview preparation tips for other job seekers - Interview was on the easier side but there was no co-operation or friednliness in the interview it was more like one sided question and answer.

Skills evaluated in this interview

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

I applied via LinkedIn and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Explain the automation framework you used in your project
  • Ans. 

    I used a keyword-driven automation framework in my project.

    • The framework was designed to allow testers to write test cases using keywords and reusable functions.

    • Test scripts were written in a tabular format, making it easy to understand and maintain.

    • The framework included libraries for common functions like logging, reporting, and data handling.

    • Test data was stored in external files like Excel sheets or CSV files for e...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Globant Senior Automation Engineer interview:
  • Java
  • Selenium
  • Cucumber
  • Appium

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Aug 2023. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Technical 

(3 Questions)

  • Q1. SQL Joins - Inner Join
  • Q2. Identifying webelement - particularly xpath
  • Ans. 

    Identifying webelement using xpath involves locating elements based on their attributes and hierarchy in the HTML structure.

    • Use unique attributes like id, class, name, etc. to create xpath expressions

    • Avoid using absolute xpaths as they are prone to breaking with changes in the HTML structure

    • Use relative xpaths that are more robust and flexible

    • Consider using xpath axes like ancestor, descendant, sibling, etc. for comple

  • Answered by AI
  • Q3. Array List, other Data Structure
Round 3 - One-on-one 

(3 Questions)

  • Q1. Convert number to roman numeral logic
  • Ans. 

    Convert a given number to its equivalent Roman numeral representation.

    • Create a mapping of numbers to Roman numerals (e.g. 1 -> 'I', 5 -> 'V', 10 -> 'X', etc.)

    • Iterate through the mapping in descending order and subtract the largest possible numeral from the given number until it reaches 0.

    • Handle special cases like 4, 9, 40, 90, etc. by using subtraction rules.

    • Combine the Roman numerals obtained in the process to form th

  • Answered by AI
  • Q2. SQL Queries normal nested queries
  • Q3. Things to consider while designing automation framework
  • Ans. 

    Considerations for designing automation framework

    • Identify the scope and objectives of automation

    • Choose the right tools and technologies based on project requirements

    • Design a modular and scalable framework for easy maintenance

    • Implement best practices for code reusability and readability

    • Include error handling and reporting mechanisms for better debugging

    • Consider integration with CI/CD pipelines for continuous testing

    • Plan...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be to the point.

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
No response

I applied via LinkedIn and was interviewed in Feb 2023. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - One-on-one 

(2 Questions)

  • Q1. They mostly asked about Java questions and few scenarios to write test cases.
  • Q2. Most of the questions are java questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Better to have good grip on coding concepsts. I haven't clered the first round.
Interview experience
3
Average
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Jul 2023. There were 4 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Networking related questions
  • Q2. Questions related to file transfer between multiple systems
Round 2 - Technical 

(2 Questions)

  • Q1. Multithreading questions
  • Q2. Related to multiple thread synchronization, lock etc
Round 3 - Coding Test 

Space and time complexities were asked for program

Round 4 - Technical 

(1 Question)

  • Q1. Managerial round

Thomson Reuters Interview FAQs

How many rounds are there in Thomson Reuters Automation Lead interview?
Thomson Reuters interview process usually has 1 rounds. The most common rounds in the Thomson Reuters interview process are Technical.
What are the top questions asked in Thomson Reuters Automation Lead interview?

Some of the top questions asked at the Thomson Reuters Automation Lead interview -

  1. How do you check property is already initialized or not in Selen...read more
  2. What is Gener...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 Thomson Reuters interview
Job Portal
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.

Interview Questions from Similar Companies

Amdocs Interview Questions
3.8
 • 524 Interviews
S&P Global Interview Questions
4.2
 • 268 Interviews
Salesforce Interview Questions
4.1
 • 267 Interviews
Adobe Interview Questions
4.0
 • 248 Interviews
Morningstar Interview Questions
4.0
 • 240 Interviews
FactSet Interview Questions
3.9
 • 206 Interviews
24/7 Customer Interview Questions
3.5
 • 174 Interviews
Globant Interview Questions
3.9
 • 168 Interviews
View all
Software Engineer
501 salaries
unlock blur

₹5.1 L/yr - ₹20 L/yr

Senior Software Engineer
443 salaries
unlock blur

₹8 L/yr - ₹27 L/yr

Content Specialist
200 salaries
unlock blur

₹3 L/yr - ₹6 L/yr

Content Analyst
180 salaries
unlock blur

₹2.2 L/yr - ₹7 L/yr

Associate Content Specialist
155 salaries
unlock blur

₹2.4 L/yr - ₹4.1 L/yr

Explore more salaries
Compare Thomson Reuters with

Bloomberg

3.4
Compare

S&P Global

4.2
Compare

FactSet

3.9
Compare

Morningstar

4.0
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