Use of navigate() method in Selenium WebDriver
navigate() method in selenium is very frequently used method. Using selenium navigate to url method, driver can navigate back, forward, refresh browser […]
navigate() method in selenium is very frequently used method. Using selenium navigate to url method, driver can navigate back, forward, refresh browser […]
We can use switchTo() method in selenium when you want to switch between multiple browser windows or multiple frames on page. Earlier we […]
getwindowhandle() and getWindowHandles() in selenium are methods to get window handles in selenium. getwindowhandle() is useful to get handle of current selected […]
Many new learners are initially confused about when to use close() and when to use quit() method for selenium close browser. Selenium […]
As name suggest, getPageSource() method is useful to get source of last loaded web page. Please note here, If web page is […]
Selenium Webdriver’s findElement() method is useful to locate WebElement for page. It is one of the mostly used method in selenium webdriver. It […]
findElements method is different than the findElement method in selenium webdriver. findElements method is useful to find all elements from page using given […]
We are using getTitle() method very frequently in out selenium webdriver tests. It is one of the basic and most commonly used […]
Selenium WebDriver have many different methods and one of them is getCurrentUrl() method. So what is the actual usage of getCurrentUrl() method and […]
Earlier we learnt about how to find XPath or CSS selector using Chrome Devtool to use it in selenium webdriver. ChroPath have […]
Finding XPath or CSS selector is very crucial task for selenium webdriver test script preparation and so google chrome has made it […]
In this article, you’ll learn how to remove leading and trailing whitespace in XPath using the normalize-space() function for cleaner and more […]
WebDriver interface has many different methods and get method is one of them. WebDriver interface is implemented by different browser classes like […]
So in last article we have seen how to locate the WebElement using four locators and those are Name, Id, Partial Link […]
In this article, we are going to see how we can locate the web element to perform an action on it. Web […]
Today we are going to see the basic things which we are going to use while making the selenium WebDriver scripts using […]
Since last update of selenium 3, Most of the users(especially those who are new with selenium) are facing common issue with error […]
Hashtable Class implements Map, Cloneable and Serializable interfaces and also extends Dictionary class. It maps keys to values in table format. Every […]
ArrayDeque is one of the collection framework member which implements Deque, Cloneable and Serializable interfaces. ArrayDeque provides Resizable-array implementation so it has […]
Deque is one of the collection interface which extends Queue interface. Deque is linear collection which allow us to add and remove […]
PriorityQueue Class is one of the collection framework class which implements Queue, Serializable, Iterable and Collection interfaces. It is using natural ordering […]
ArrayList class is sub class of collection interface which implements to List interface. ArrayList class provides resizable-array so it can grow automatically […]
What is Java Collections Framework? Java Collections Framework is group of different interfaces, classes and algorithms. In simple word, Collection means single […]
List interface in java is ordered collection so it can store elements in sequence. List interface is sub interface and it extends […]
Collection is an interface in java. Collection interface extends Iterable interface. In hierarchy, Collection interface is root of List, Queue and Set […]
TestNG is unit testing framework and it has been most popular in very sort time among java software developers and selenium webdriver software […]
isMultiple() method is used to identify if you can select multiple options from a select element. deselectAll() method is used to deselect […]
Adding selection or removing selection from list box are very common actions for list box. Selenium WebDriver has 3 alternate options to select […]
Sometimes you need to set time out for your webdriver test or you need to set expected exception condition for your test. […]
Many readers are asking me the difference between JUnit annotations @Before VS @BeforeClass and @After VS @AfterClass in webdriver software automation test. If you have read […]