IDE Targating Get link Facebook X Pinterest Email Other Apps July 11, 2015 Now it's easy to understand Selenium Locating Elements. By Id By Name By CSS By XPath Click on IDE Helper Get link Facebook X Pinterest Email Other Apps Comments AnonymousJuly 24, 2015 at 6:13 PMit good to have xpathReplyDeleteRepliesReplyAdd commentLoad more... Post a Comment
Bubble Sort July 25, 2015 public class BubbleSort { public void Sort() { //method scope start int[] salary = { 5, 1, 12, -5, 16 }; for (int j = 0; j < salary.length; j++) { //first for loop for (int i = 0; i < salary.length - 1; i++) { //second for loop int n1 = salary[i]; int n2 = salary[i + 1]; if (n1 > n2) { //if condition start int temp = n1; n1 = n2; ... Read more
Java loops July 24, 2015 Print * * * * * * * * * * * * * * * Code for (int i = 0; i < 5; i++) { for (int j = 0; j < i; j++) { System.out.print(" * "); } System.out.println(" "); } Print * * * * * * * * * * * * * * * Code for (int i = 5; i > 0; i--) { for (int j = 0; j < i; j++) { System.out.print(" * "); } System.out.println(" "); } Print * * * * * * * * * * * *... Read more
it good to have xpath
ReplyDelete