Saturday 31 December 2011

Control Flow Statements in java for Selenium automation

The statements inside your source files are generally executed from top to bottom, in the order that they appear. Control flow statements, however, break up the flow of execution by employing decision making, looping, and branching, enabling your program to conditionally execute particular blocks of code. This section describes the decision-making statements (if-thenif-then-elseswitch), the looping statements (forwhiledo-while), and the branching statements (breakcontinuereturn) supported by the Java programming language.


Source Link: http://docs.oracle.com/javase/tutorial/java/nutsandbolts/flow.html