BDD Advantages and Disadvantages
BDD advantages and disadvantages The main BDD advantages are: Reduce waste: BDD is focused on discovering and developing features that brings high business value, so any feature that does...
BDD advantages and disadvantages The main BDD advantages are: Reduce waste: BDD is focused on discovering and developing features that brings high business value, so any feature that does...
Library function that can be used to determine if the network address shared is IPv4 or IPv6 ==== package testCases; import java.util.regex.Matcher; import java.util.regex.Pattern; import java.util.regex.PatternSyntaxException; public class...
Following program lists “Display name” and “InetAddress” to all network connections available ============= package testCases; import java.io.*; import java.net.*; import java.util.*; import static java.lang.System.out; public class ListNets {...
This example is crude form of discovering all systems up and running (at time of execution) to run discovery of subnet. ============ package testCases; import java.io.IOException; import java.net.InetAddress; import...
Following program can be used to create bulk connections to a database. By default as soon as connection is closed there should be no connection leakage. If your application...
JMeter allows creation of custom number of specific length. Put following code in “BeanShell PostProcessor” and use “Phone” variable in your JMeter. This will generate a 10 digit random...
Switching between tabs in Selenium //Get handle to Current window tab. String mainWindowHandle = driver.getWindowHandle(); //Perform action which opens a new tab window in browser. //Get the list...
String winHandleBefore = driver.getWindowHandle(); // Perform GUI action which opens a new window, use following code to switch to pop-up window: for (String currentWindow : driver.getWindowHandles()) driver.switchTo().window(currentWindow); to revert...
Perform Double click in Selenium Selenium provides Actions class to allow end user perform double click on an object. Actions act = new Actions(driver); act.moveToElement(driver.findElement(By.xpath(“Element“))).doubleClick().build().perform();
In RDBMS, a stored procedure is set of sql statements which is complied and stored in a database to perform a special task. A stored procedure can have any...