How to use getTitle() method in selenium WebDriver

We are using getTitle() method very frequently in out selenium webdriver tests. It is one of the basic and most commonly used method. getTitle() method is used to get the title of currently loaded web page. Also it will strip leading and trailing white space from title if available. Also it can return null if title … Read more

How to Use getCurrentUrl() Method In Selenium WebDriver

Selenium WebDriver have many different methods and one of them is getCurrentUrl() method. So what is the actual usage of getCurrentUrl() method and when to use it. Well, any one can get a clue about usage of getCurrentUrl() method from its name. It will simply return current URL of browser after loading the page. How getCurrentUrl() Works? … Read more

Web API and Web Services Introduction

Web API API (an application programming interface) is set of  rules, protocols, specifications and tools which allows two software programs to communicate with each other for developing software and application. It provides interface to communicate two different software programs to interact with each other if both follows API’s protocols and rules. API is not user … Read more