Tagged: Core Java

Only child in CSS

Writing the First Program in Selenium

In the previous post, we have seen the difference between findelement and findElements methods in selenium. In this post, we will write the first program in selenium. We have already learnt how to create...

findelements in selenium

Difference between findElement() and findElements()

In the previous post, we have seen about WebDriver get() and navigate() methods. In this post, we will learn the difference between findElement() and findElements(). These are the important methods  which are used for finding...

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...

Regular expression

Regular Expression part 2 in java

In the part 1 , we have seen what is regular expression and its syntax. In part 2, we will understand how to use regular expression with examples. Example 1: We can use any...

Regular expression

Regular expression part 1 in java

In the previous post, we have seen the conditional statements. In this post, we will learn about the regular expression in java. What is regular expression? A regular expression is nothing but a String...

switch case in java

switch case in java

In the previous post, we have seen if..else if conditional statements. In this post, we will learn what is switch case in java. switch case is an alternative of if else statements. It is used to control...

if statement in java

if statement in java

In the previous post, we have seen the working of for each loop in java. In this post, we will look at if statement in java. In every programming language, at some point we...

for each loop in java

for each loop in java

In the previous post, we have seen the working of for loop. In this post, we will learn about for each loop. This loop has been added in java 5, also known as enhanced for...