Tagged: Selenium

Navigate and get

Difference between Webdriver get() and navigate()

In the previous post, we have seen how to work with different browsers in selenium. In this post,we will see the difference between Webdriver get() and navigate(). We will use Firefox browser in our demos. The...

Locators in selenium

Different Type of Locators in Selenium

In the previous post, we have seen how to use the developers tool? In this post, we will see different Type of Locators in Selenium? What is locators? Before moving to the question what is...

Open firebug

Usage of developer tools ,Firebug and Firepath

In the previous post, we have seen How to configure selenium with Eclipse? In this post, we will see the Usage of developer tools ,Firebug and Firepath. Developer Tools ,also known as Web Development...

StoredVars

Selenium IDE part 2

In part 1 , we have learnt about installation of Selenium IDE, details of its features and menus etc. In Selenium IDE part 2, we will see how to create test case and Suite...

for loop in java

for loop in java

In previous posts, we have seen while loop and Do ..while loop. In this post, we will see working of for loop. Suppose, we have some repetitive statements that need to be executed n...

Multiple catch block

Multiple catch block in java

In the previous post, we have seen Nested try blocks. In this post, we will see if it is possible to have multiple catch block or not. Can we have multiple catch block associated...

try and catch block in java

try and catch block in java

In the previous block, we have seen What is Exception Handling? In this post, we will discuss about the try and catch block. What is a try block? A try block contains a set of...

Console class in java

Console Class in java

In the previous post, we have seen CharArrayWriter class. In this post, we will see the usage of Console class. In java, Console class is used to read the input provided from console by...

CharArrayWriter class

CharArrayWriter Class in java

In the previous post, we have seen BufferedInputStream and BufferedOutputStream. In this post, we will CharArrayWriter class. This class writes characters to a writer and converts those written characters into a char arary. CharArrayWriter...