Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Save more on your purchases! discount-offer-chevron-icon
Savings automatically calculated. No voucher code required.
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletter Hub
Free Learning
Arrow right icon
timer SALE ENDS IN
0 Days
:
00 Hours
:
00 Minutes
:
00 Seconds
Arrow up icon
GO TO TOP
Learning Selenium Testing Tools - Third Edition

You're reading from   Learning Selenium Testing Tools - Third Edition Leverage the power of Selenium to build your own real-time test cases from scratch

Arrow left icon
Product type Paperback
Published in Feb 2015
Publisher
ISBN-13 9781784396497
Length 318 pages
Edition 3rd Edition
Languages
Arrow right icon
Author (1):
Arrow left icon
Raghavendra Prasad MG Raghavendra Prasad MG
Author Profile Icon Raghavendra Prasad MG
Raghavendra Prasad MG
Arrow right icon
View More author details
Toc

Table of Contents (22) Chapters Close

Learning Selenium Testing Tools Third Edition
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
1. Getting Started with Selenium IDE FREE CHAPTER 2. Locators 3. Overview of the Selenium WebDriver 4. Finding Elements 5. Design Patterns 6. Working with WebDriver 7. Automation Framework Development and Building Utilities 8. Mobile Devices 9. Getting Started with the Selenium Grid 10. Advanced User Interactions 11. Working with HTML5 12. Advanced Topics 13. Migrating from Remote Control to WebDriver Automation Prerequisites for Selenium Automation Answers for Self-test Questions Index

Decision and control statements


In Java, decision and control statements allow you to select and execute specific blocks of the code while skipping other sections or statements.

The if statement

The if statement consists of a condition followed by one or more statements.

The syntax of an if statement is as follows:

if(condition) 
{ 
    //Statements will execute if the condition is true 
}

An example of this is as follows:

package MyFirstPackage;
  public class IfCondition {
  public static void main(String[] args) {
    int empSal = 20000;
    if (empSal >= 10000) {
      System.out.println("he is a manager...!");
    }
    else 
    {
      System.out.println("he is NOT a manager...!");
    }
  }
}

The output of the preceding code is as follows:

he is a manager...!

The if...else statement

The if statement can be followed by an optional else statement, which executes when the condition is false.

The syntax of an if...else statement is:

if(condition){ 
    //Executes when the condition is true 
}else{ 
    //Executes when the condition is false 
}

The if...else if...else statement

The if statement can be followed by an optional else if...else statement, which is very useful to test various conditions using single if...else if statement.

The syntax of an if...else statement is:

if(condition 1){ 
  //Executes when the condition 1 is true 
}else if(condition 2){ 
  //Executes when the condition 2 is true 
}else if(condition 3){ 
  //Executes when the condition 3 is true 
}else { 
  //Executes when the one of the above condition is true. 
} 

The nested if...else statement

It is always legal to nest if..else statements. When using if...else if... else... statements, there are a few points to keep in mind:

  • An if statement can have zero or one else statement and it must come after any else if statements

  • An if statement can have zero to many else if statements and they must come before the else statement

  • Once an else if statement succeeds, none of the remaining else if statements or else statements will be tested

The syntax for a nested if...else statement is as follows:

if(condition 1){ 
  //Executes when the condition 1 is true 
  if(condition 2){ 
    //Executes when the condition 2 is true 
  }
}

The switch statement

A switch statement allows a variable to be tested for equality against a list of values. Each value is called a case, and the variable being switched on is checked for each case.

The syntax of a switch statement is:

switch(expression){ 
case value : 
//Statements 
break; //optional 
case value : 
//Statements 
break; //optional 
//You can have any number of case statements. 
default : //Optional 
//Statements 
}
lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $15.99/month. Cancel anytime
Visually different images