SOAP vs REST Web Services N B 10/25/2013 05:14:00 pm 0 SOAP stands for Simple Object Access Protocol . REST stands for Representational State Transfer.(Means the state can be transferred... Read more »
Handling Captcha Using WebDriver N B 10/15/2013 01:04:00 pm 0 A CAPTCHA is a program that protects websites against bots by generating and grading tests that humans can pass but current computer p... Read more »
Waits in WebDriver (Implicit,Explicit and ThreadSleep) N B 10/07/2013 12:10:00 pm 2 Implicit Wait - It's global setting applicable for all elements and if element appear before specified time than script will start e... Read more »
Database Testing Checklist N B 9/27/2013 03:51:00 pm 19 1.) Data integrity The complete data belonging to each entity should be stored in the database. Depending on the database design, t... Read more »
Regression Testing VS ReTesting N B 9/27/2013 02:58:00 pm 0 a.)ReTesting- This is done to check if the Fix done by the Dev for the Defect works Properly. Regression Testing-This is done to ensure... Read more »
Oracle Database Connectivity (WebDriver) N B 9/27/2013 01:43:00 pm 2 Code Snippet for Oracle Database Connectivity in WebDriver Jar Files required: 1.)ojdbc14-10.2.0.3.0.jar 2.)mysql-connector-java-5.1.21.... Read more »
Read Data or HTML table Using WebDriver N B 9/24/2013 10:34:00 am 2 Code Snippet for how to Read Data or HTML table Using WebDriver WebElement tab=driver.findElement(By. xpath("//table[@id=' av... Read more »
Find Broken Images for an Application or a Website(WebDriver) N B 9/24/2013 10:29:00 am 3 Code in Selenium to Find Broken Images for an Application or a Website import java.util.List; import java.util.concurrent.TimeUnit; ... Read more »
Upload a File Using AutoIT(WebDriver) N B 9/24/2013 10:27:00 am 11 1. First install autoit from www.autoitscript.com/site/autoit/downloads 2. Create an autoit file with below code say abc.au3 file and ... Read more »
Integrate Firebug with WebDriver Window N B 9/24/2013 10:19:00 am 0 When We Run Selenium WebDriver , the WebDriver Window does not have Firebug in it. To Launch Firebug in WebDriver window we can use the f... Read more »