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

Fire-IE-Selenium Tool To Find XPath, CSS Path Or Any Other Locator For IE Only WebSites

There are thousands of software websites which are allowed to access only via Internet Explorer browser. Such IE only software websites are not allowed to access through any other browsers like Firefox or google chrome so you can access such sites In Internet Explorer browser only. Supposing you need to automate such IE only software … Read more