Selenium server standalone example
Step 1: Download the selenium, selenium-server-standalone-2.28.0.jar (31.5MB). Step 2: Download the junit-4.3.1. jar, http://mirrors.ibiblio.org/pub/mirrors/maven2/junit/junit/4.3.1/junit-4.3.1.jar...
View ArticleSelenium server at localhost
Step 1: Download the selenium server selenium-server-standalone-2.28.0.jar (31.5MB). Step 2: Open the cmd and run the, java -jar selenium-server-standalone-2.28.0.jar Step 3: Open the browser and...
View Articleselenium server localhost
Step 1: Download the selenium, selenium-server-standalone-2.28.0.jar (31.5MB). Step 2: Open the cmd and run, “java -jar selenium-server-standalone-2.28.0.jar -role hub” Step 3: Open the browser and...
View ArticleTest cases using selenium IDE step by step
Step 1: Download the selenium IDE and selenium-server-standalone-2.28.0.jar (31.5MB). Step 2: Installing selenium IDE, (you must need mozilla firefox for selenium ide test cases) Step 3: After the...
View ArticleJunit Test case sample
Step 1: Java code package com.math; public class AgnClass { public int Sum(int x, int y) { return x + y; } } Step 2: Junit Test case for the above Java code package com.math; import org.junit.Test;...
View ArticleSelenium click Event Sample Program in Java
Selenium click Event: In the post, we are going to load www.javadomain.in site using selenium in java and JSP and Servlet page will be clicked after the page load.… Read more..... The post Selenium...
View Article