Explain your experience with automation tools (like Selenium, JUnit, etc.). Write a simple code to reverse a string in Python. What are locators in Selenium? Explain their types. How would you approach testing a new feature that’s added to a software product?
Anonym
Selenium is a Java based s/w testing framework and helps to test the software's by automating few testing steps via coding saving time and effort. JUnit helps to write unit tests in Java for unit testing of the application. .reverse() function can be used or run a reverse for loop To test a new feature that is added to a software I will first create a test plan with all the scenarios and then create the test cases for each scenario, after that I will execute the test cases and record whatever results I am getting and will verify if the results meet the customer requirements or not after that I will pass on the errors to the developers to fix. I will hand over the test report to the team lead.