What Is Appium? Why Need Appium? Limitations Of Appium

What Is Appium? Appium is mobile web, native and hybrid software application test automation tool.  It is open-source software automation tool which is useful to automate android and IOS platform apps. Most important thing is : Appium is “cross-platform” automation tool so you can write software automation tests against iOS and  Android (multiple platforms) using same API. “cross-platform” … Read more

What Is The Use of “final” Keyword In Java

Interviewer can ask you question “What is final keyword in java“. “final” is a keyword which is reserved in java software development language. It restrict the user. “final” keyword In Java can be used with different three contexts in java like variable, method and class. If define an entity which may only be assigned once. Now let’s try to understand … Read more

Handle SSL Certificate Error In Google Chrome When Run Test In Selenium

You already know how to execute selenium webdriver test In Google chrome browser as we learnt It In THIS POST. You are also well aware about how to handle SSL Certificate Error In Mozilla Firefox browser by creating custom profile as described In THIS POST and In IE browser using driver.navigate() method as described In THIS POST. Now … Read more

Similarities And Difference Between Abstract Class And Interface

Earlier we learnt about interface in THIS POST and abstract class THIS POST. Now let’s try to understand the similarities and difference between abstract class and interface in java software development language. The interviewer can ask you this question when you go for a Selenium webdriver with Java interview. There are a few similarities and differences between interface … Read more