Interview Questions Of Core Java For Selenium WebDriver – Part 2

Part 2 Core java interview questions for selenium automation testing 6 : What is the difference between static and not static variable? Answer : Main differences are as bellow. Static variables are preceded by static keyword. For non-static variable, there is not any preceding keyword. Memory is allocated for static variables at the time of class loading. Memory is … Read more

Java Interview Questions For Selenium WebDriver – Part 1

PART 1 1 : What is object in java? Answer : Object Is an Instance of class and it has its own state and behavior. In real world we can say, Dog is object of Animal class which have different state like breed, color, name, hungry, etc and behavior  like wagging tail, fetching, barking etc. 2 : What is class? … Read more

Latest Interview Questions On Selenium Advanced Usage

Part 23 108 : I wants to pass parameter In software test case through testng.xml file. How can I do It? Answer : You can use <parameter> node under <test> node In testng.xml file with parameter name and value. Then you can use @Parameters annotation with parameter name In your test case of software web application. VIEW USAGE OF @PARAMETER … Read more

Selenium Advanced Interview Questions With Detailed Answers

Part 20 93 : Tell me the class name using which we can generate Action chain. Answer : The WebDriver class name Using which we can generate Action chain Is “Actions“. VIEW USAGE OF ACTIONS CLASS with practical example on how to generate series of actions to drag and drop element of software web application. 94 : Do you know … Read more