Upload Button Icon Add office photos
Engaged Employer

i

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

LTIMindtree Verified Tick

Compare button icon Compare button icon Compare
3.8

based on 20.5k Reviews

Filter interviews by

LTIMindtree Tosca Automation Test Engineer Interview Questions and Answers

Updated 19 Jun 2024

LTIMindtree Tosca Automation Test Engineer Interview Experiences

1 interview found

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. Tosca best practises
  • Q2. How Dex Works in Tosca
  • Ans. 

    Dex in Tosca is a data extraction tool used for extracting data from various sources for testing purposes.

    • Dex is used to extract data from databases, files, APIs, and web services.

    • It can be used to validate data during test automation.

    • Dex can also be used to populate test data in Tosca test cases.

    • Examples of Dex usage include extracting customer information from a database or validating response data from an API.

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(5 Questions)

  • Q1. Question on tosca db automation
  • Q2. Api automation questions
  • Q3. Tosca basic queations
  • Q4. Dex configuration setup
  • Ans. 

    Dex configuration setup involves configuring the data exchange between Tosca and external systems.

    • Dex configuration is done in Tosca Commander under the 'Dex' tab.

    • You can set up connections to external systems like JIRA, Jenkins, etc.

    • Configuration includes defining endpoints, authentication details, and data mapping.

    • Testing the configuration is important to ensure smooth data exchange.

  • Answered by AI
  • Q5. Scenario based questions
Interview experience
4
Good
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Job Portal and was interviewed in May 2024. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. Tosca related questions only. They were tough,

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for tosca only
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(1 Question)

  • Q1. TOSCA Componants business parameters embeded controls

Interview Preparation Tips

Interview preparation tips for other job seekers - Bee Keen on your Answers
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. How to automate Sql queries through Tosca
  • Ans. 

    Automating SQL queries through Tosca involves using the Tosca Query Language (TQL) module.

    • Use the Tosca Query Language (TQL) module to write and execute SQL queries.

    • Create TQL modules in Tosca to automate the execution of SQL queries.

    • Utilize Tosca's data-driven testing capabilities to automate SQL queries with different input data.

    • Integrate Tosca with database tools like SQL Server Management Studio for executing and v

  • Answered by AI
  • Q2. What is TDM ?
  • Ans. 

    TDM stands for Test Data Management. It involves creating, storing, managing, and providing test data for automated testing.

    • TDM involves creating and maintaining test data for automated testing

    • It ensures that the test data is accurate, relevant, and up-to-date

    • TDM helps in improving the efficiency and effectiveness of automated testing

    • Examples of TDM tools include Informatica, Delphix, and IBM InfoSphere

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Mainly asked from project

Skills evaluated in this interview

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

I was interviewed in Dec 2024.

Round 1 - Technical 

(7 Questions)

  • Q1. Write code to implement and explicit wait in Selenium
  • Q2. Write code to implement Robot class in java
  • Q3. How would you locate the Xpath for the "Today's Deal" menu item on Amazon
  • Q4. What will be the memory allocation for the code String str1 = "Automation"; String str2 = new String("Automation");
  • Q5. What is the difference between str1==str2 and str1.equals(str2)
  • Q6. Meaning of status code 401 and 502
  • Q7. Print first 4 letter and last 4 letter of String str="www.amazon.com"
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via Job Fair and was interviewed in Dec 2024. There were 3 interview rounds.

Round 1 - Coding Test 

1.30 hours, Java, selenium

Round 2 - One-on-one 

(1 Question)

  • Q1. Java program to compare 2 strings and check if both matching Selenium Code for Drag and Drop images Selenium code for selecting all the elements from the dropdown Java concepts: OOPs, Inheritance(Multiple ...
Round 3 - Technical 

(1 Question)

  • Q1. AI Generated interview which is same a face-to-face interview. Questions asked on Java concepts, Selenium concepts
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

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

Round 1 - Technical 

(10 Questions)

  • Q1. What is the output of below code class Animal{ Animal(){ System.out.println("animal is created") } class Dog extends Animal{ Dog(){ System.out.println("Dog is created")} class TestSuper4{ pub...
  • Ans. 

    The output of the code will be 'animal is created' followed by 'Dog is created'.

    • The code defines a class Animal with a constructor that prints 'animal is created'.

    • It also defines a class Dog that extends Animal, with a constructor that prints 'Dog is created'.

    • In the main method, an instance of Dog is created, which will trigger the constructors of both Animal and Dog classes.

  • Answered by AI
  • Q2. Output of this : System.out.println(10+20+"Hello"+30+40) - Explain
  • Q3. Output of this : String name="Hello"; name=name+"There"; system.out.println(name)
  • Ans. 

    The output will be 'HelloThere'

    • Concatenation of 'Hello' and 'There' results in 'HelloThere'

    • The final string is printed using System.out.println()

  • Answered by AI
  • Q4. StringBuffer buffer=new StringBuffer("Hello") buffer.append("There"); System.out.println(buffer);
  • Ans. 

    The code creates a StringBuffer object with 'Hello' and appends 'There' to it before printing the final string.

    • StringBuffer is mutable, so the original 'Hello' string can be modified

    • The append() method adds the specified string to the end of the buffer

    • The final output will be 'HelloThere'

  • Answered by AI
  • Q5. Which is valid or invalid a. ChromeDriver driver=new ChromeDriver(); b. WebDriver driver=new ChromeDriver(); c. WebDriver driver2=new WebDriver(); driver2=new ChromeDriver();
  • Ans. 

    Option a is valid, option b is valid, option c is invalid.

    • Option a is valid because ChromeDriver is a subclass of WebDriver, so it can be assigned to a WebDriver reference.

    • Option b is valid because ChromeDriver is a subclass of WebDriver, so it can be instantiated using a WebDriver reference.

    • Option c is invalid because WebDriver is an interface and cannot be instantiated directly. It can only be used as a reference typ

  • Answered by AI
  • Q6. Program to sort the input in descending order without using inbuild method/functions
  • Ans. 

    Sort input array of strings in descending order without using inbuilt functions

    • Iterate through the array and compare each element with the rest to find the largest element

    • Swap the largest element with the first element, then repeat the process for the remaining elements

    • Continue this process until the array is sorted in descending order

  • Answered by AI
  • Q7. Difference between findElement and findElements
  • Ans. 

    findElement returns the first matching element on the page, while findElements returns a list of all matching elements.

    • findElement returns a single WebElement matching the locator provided

    • findElements returns a list of WebElements matching the locator provided

    • findElement will throw NoSuchElementException if no element is found, while findElements will return an empty list

  • Answered by AI
  • Q8. Difference between getwindowhandle and getwindowhandles() and what is output type
  • Ans. 

    getwindowhandle returns the handle of the current window, getwindowhandles() returns handles of all open windows

    • getwindowhandle returns a single window handle, while getwindowhandles() returns a set of window handles

    • getwindowhandle is used to switch between windows in Selenium WebDriver

    • Output type of getwindowhandle is String, while output type of getwindowhandles() is Set

Answered by AI
  • Q9. Question on finding the xpaths on website
  • Q10. Difference between String and StringBuilder?
  • Ans. 

    String is immutable, while StringBuilder is mutable and more efficient for concatenating strings.

    • String is immutable, meaning its value cannot be changed once it is created.

    • StringBuilder is mutable, allowing for modifications to the string without creating a new object.

    • StringBuilder is more efficient for concatenating multiple strings as it does not create new objects each time.

    • Example: String str = "Hello"; StringBuil

  • Answered by AI

    Skills evaluated in this interview

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

    I applied via Company Website and was interviewed in Oct 2024. There was 1 interview round.

    Round 1 - Technical 

    (4 Questions)

    • Q1. Write java program to print sum of digits from a given string eg: "abcd23"
    • Ans. 

      Java program to print sum of digits from a given string

      • Iterate through each character in the string

      • Check if the character is a digit using Character.isDigit() method

      • Convert the digit character to integer using Character.getNumericValue() method

      • Sum up all the digits found in the string

    • Answered by AI
    • Q2. Explain oops concepts used in your framework with example?
    • Ans. 

      OOPs concepts used in the framework include inheritance, polymorphism, encapsulation, and abstraction.

      • Inheritance is used to create a parent-child relationship between classes. For example, a base class 'Page' can be inherited by 'HomePage' and 'LoginPage' classes.

      • Polymorphism allows objects of different classes to be treated as objects of a common superclass. For instance, a 'click' method can be implemented different...

    • Answered by AI
    • Q3. Explain polymorphism
    • Ans. 

      Polymorphism is the ability of a single function or method to operate on different types of data.

      • Polymorphism allows objects of different classes to be treated as objects of a common superclass.

      • There are two types of polymorphism: compile-time (method overloading) and runtime (method overriding).

      • Example of compile-time polymorphism: function overloading in Java.

      • Example of runtime polymorphism: method overriding in Java

    • Answered by AI
    • Q4. Java program to print the sum of elements in string array eg: String[] arr = {"1","2","3"}
    • Ans. 

      Java program to print the sum of elements in a string array.

      • Convert each element in the string array to an integer using Integer.parseInt()

      • Sum up all the integers to get the total sum

    • Answered by AI

    Skills evaluated in this interview

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

    I applied via Referral and was interviewed in Aug 2024. There was 1 interview round.

    Round 1 - Technical 

    (7 Questions)

    • Q1. What framework you are using in your project?
    • Ans. 

      We are using the Selenium framework for automation testing in our project.

      • Selenium is a popular open-source automation testing framework

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

      • Selenium WebDriver is used for automating web applications

      • It provides features for browser automation, testing across different browsers, and parallel test execution

    • Answered by AI
    • Q2. Explain about the framework structure
    • Ans. 

      Framework structure refers to the organization and layout of the automation framework components.

      • Framework structure includes modules, libraries, test scripts, configuration files, and test data.

      • It follows a hierarchical structure with layers such as driver scripts, reusable libraries, and test cases.

      • Frameworks can be structured as linear, modular, data-driven, keyword-driven, or hybrid.

      • Example: In a data-driven framew...

    • Answered by AI
    • Q3. Difference between findelement and findelements
    • Ans. 

      findelement returns the first matching element on a webpage, findelements returns a list of all matching elements.

      • findelement returns a single WebElement, findelements returns a list of WebElements

      • findelement throws NoSuchElementException if no element is found, findelements returns an empty list

      • Example: driver.findElement(By.id("exampleId")) vs driver.findElements(By.className("exampleClass"))

    • Answered by AI
    • Q4. How to handle multiple tabs in selenium
    • Ans. 

      Handling multiple tabs in Selenium involves switching between tabs and performing actions on each tab.

      • Use getWindowHandles() to get a set of window handles

      • Switch to a specific tab using switchTo().window(handle)

      • Perform actions on the tab

      • Close the tab if needed using driver.close()

    • Answered by AI
    • Q5. Explain about hashmaps
    • Ans. 

      Hashmaps are data structures that store key-value pairs and allow for efficient retrieval of values based on keys.

      • Hashmaps are also known as dictionaries, maps, or associative arrays.

      • They use a hash function to map keys to indices in an underlying array.

      • Hashmaps offer constant-time average case complexity for insertion, deletion, and lookup operations.

      • Example: HashMap map = new HashMap<>(); map.put("ke

    • Answered by AI
    • Q6. Why we use try and catch
    • Ans. 

      Try and catch blocks are used in programming to handle exceptions and prevent the program from crashing.

      • Try block is used to enclose the code that might throw an exception

      • Catch block is used to handle the exception thrown in the try block

      • It prevents the program from crashing and allows for graceful error handling

      • Can also include finally block to execute code regardless of whether an exception is thrown

    • Answered by AI
    • Q7. What is inheritance
    • Ans. 

      Inheritance is a concept in object-oriented programming where a class can inherit attributes and methods from another class.

      • Allows a class to inherit attributes and methods from another class

      • Promotes code reusability and reduces redundancy

      • Creates a parent-child relationship between classes

      • Derived class can access the properties and methods of the base class

      • Example: Class 'Car' can inherit from class 'Vehicle'

    • Answered by AI

    Skills evaluated in this interview

    LTIMindtree Interview FAQs

    How many rounds are there in LTIMindtree Tosca Automation Test Engineer interview?
    LTIMindtree interview process usually has 1 rounds. The most common rounds in the LTIMindtree interview process are Technical.
    What are the top questions asked in LTIMindtree Tosca Automation Test Engineer interview?

    Some of the top questions asked at the LTIMindtree Tosca Automation Test Engineer interview -

    1. How Dex Works in To...read more
    2. Tosca best practi...read more

    Tell us how to improve this page.

    LTIMindtree Tosca Automation Test Engineer Interview Process

    based on 1 interview

    Interview experience

    4
      
    Good
    View more

    Interview Questions from Similar Companies

    TCS Interview Questions
    3.7
     • 10.4k Interviews
    Accenture Interview Questions
    3.8
     • 8.2k Interviews
    Infosys Interview Questions
    3.6
     • 7.6k Interviews
    Wipro Interview Questions
    3.7
     • 5.6k Interviews
    Cognizant Interview Questions
    3.8
     • 5.6k Interviews
    Capgemini Interview Questions
    3.7
     • 4.8k Interviews
    Tech Mahindra Interview Questions
    3.5
     • 3.8k Interviews
    HCLTech Interview Questions
    3.5
     • 3.8k Interviews
    Genpact Interview Questions
    3.8
     • 3.1k Interviews
    IBM Interview Questions
    4.0
     • 2.4k Interviews
    View all
    LTIMindtree Tosca Automation Test Engineer Salary
    based on 13 salaries
    ₹4.8 L/yr - ₹11 L/yr
    At par with the average Tosca Automation Test Engineer Salary in India
    View more details

    LTIMindtree Tosca Automation Test Engineer Reviews and Ratings

    based on 2 reviews

    5.0/5

    Rating in categories

    4.2

    Skill development

    5.0

    Work-life balance

    4.5

    Salary

    5.0

    Job security

    4.5

    Company culture

    4.2

    Promotions

    4.5

    Work satisfaction

    Explore 2 Reviews and Ratings
    Senior Software Engineer
    21.3k salaries
    unlock blur

    ₹4.6 L/yr - ₹18.6 L/yr

    Software Engineer
    16.2k salaries
    unlock blur

    ₹2 L/yr - ₹10 L/yr

    Module Lead
    6.7k salaries
    unlock blur

    ₹7 L/yr - ₹25.5 L/yr

    Technical Lead
    6.5k salaries
    unlock blur

    ₹9.4 L/yr - ₹36 L/yr

    Senior Engineer
    4.4k salaries
    unlock blur

    ₹4.2 L/yr - ₹16.4 L/yr

    Explore more salaries
    Compare LTIMindtree with

    Cognizant

    3.8
    Compare

    Capgemini

    3.7
    Compare

    Accenture

    3.8
    Compare

    TCS

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