Java Questions For Selenium WebDriver Interview
Part 5 21 : Explain System.out.println(); Answer : System : is a final class in java.lang package. out : is a static member of system class. It […]
Part 5 21 : Explain System.out.println(); Answer : System : is a final class in java.lang package. out : is a static member of system class. It […]
Part 4 16 : Can we overload static methods? Answer : Yes.. There is not any restriction to overload static methods. We can overload static […]
Part 3 11 : Why main method is static? Answer : As we know, We can access static stuff without creating object of class. Because […]
Part 2 Core java interview questions for selenium automation testing 6 : What is the difference between static and not static variable? Answer : Main […]
PART 1 1 : What is object in java? Answer : Object Is an Instance of class and it has its own state and behavior. […]
By default, Chrome driver browser instance opens with fresh profile when webdriver launch it. So your installed extensions in google chrome browser […]
Earlier we already learnt how to execute selenium WebDriver test In different browsers like Mozilla Firefox (VIEW THIS POST), Google Chrome (VIEW […]
Tool tips are very common elements of web page and visible on mouse hover of element. It can be on text box, […]
If you site Is large then full page can take more time to get loaded completely. In such sites, Single action (like […]
Today most of the applications are using Java Scripts for client side processing like client side validations, etc. So It Is very […]
What is JSON? “JavaScript Object Notation” is full form of JSON and it is best way to store information in an organized, […]
Earlier we learnt, How to start single node on one machine as described in THIS POST. Now our next question is “can […]
“timeout” is node configuration parameter using which you can set timeout for selenium grid node browser session. If you set “-timeout 20000” […]
We learnt about “maxInstances” in my PREVIOUS POST. “maxSession” is another configuration parameter which helps to set max allowed sessions to run at […]
“maxInstances” is configuration parameter which is used during selenium grid 2 node configuration. Using “maxInstances” in selenium grid 2, We can set […]
In my previous post, We learnt how to execute selenium WebDriver single software automation test in multiple browsers in parallel using Selenium […]
Main advantage of selenium grid is we can run webdriver software test cases in parallel using selenium grid 2 environment to reduce software […]
As described In my EARLIER POST, Selenium grid 2 Is useful to execute webdriver software tests on multiple nodes In parallel. So […]
This selenium grid 2 tutorial will guide you how to use selenium grid 2 to perform distributed software test automation in order […]
We learnt what is Selenium Grid 2 and when to use it in PREVIOUS POST. Selenium Grid is another project of selenium […]
Earlier we learnt selenium WebDriver/Selenium 2 tutorials with practical examples and you can find all webdriver tutorials links on THIS PAGE. Selenium […]
24Sometimes you need to press and hold(long press) an element for few seconds to get required result In your android software app. […]
Automating star rating bar in appium android software test is very easy, There will be star rating bar in many android software […]
Selecting item/value from drop down is needed in android software app as most of the apps contain drop down. Earlier we learnt […]
Selecting radio button of android software app in appium automation test is same action as selecting check-box as described in my Earlier […]
Retrieving all values from drop down list of android app software in appium software automation test is little tricky task but not […]
Hiding keyboard in android device is one of the common action. In your android mobile device, It will show you soft keyboard […]
Check box is another common element of any native, hybrid or mobile software web applications. Selecting check box of android software app in […]
Text box is very common element of any android native software app or software web application. In android appium software automation test, […]
In android, There is one important element ON/OFF switch. It is very easy to ON/OFF switch in android automation test using appium […]