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 Latest Questions

Part 22 103 : How to customize Firefox browser profile for webdriver software test? Answer : You can do It In two different ways. You can create your desired firefox browser profile before running software automation test and then you can use It In your selenium webdriver software test. VIEW EXAMPLE. You can customize your firefox browser profile run time before launching … Read more