Cucumber With Selenium

In previous post we have seen about cucumber introduction and setup with eclipse, now its time to integrate with selenium.

1. Create the feature file to login to AnukoTimesheet
2. Create Step definition class file
3. Runner class
4. Run the script

Note : I assume that you have gone through the basic cucumber and installation post earlier


Step 1 : To create the feature file as LoginTest.feature under src/test/resources
Feature: LogIn Action Test
Description: This feature will test a LogIn and LogOut functionality
Scenario: Successful Login with Valid Credentials
When User Navigate to LogIn Page
And User enters UserName and Password
Then Message displayed Login Successfully
Step 2 : Create Step definition class file, before that better run the Runner Class so that we can get the step definition template. Right click and run as Junit Test
package MavenTest.DemoMavenCucumber;
import org.junit.runner.RunWith;
import cucumber.api.CucumberOptions;
import cucumber.api.junit.Cucumber;
@RunWith(Cucumber.class)
@CucumberOptions(
features = "/yourpath/src/test/resources/LoginTest.feature",
plugin = {"pretty", "html:target/cucumber-html-report"},
tags = {}
)
public class RunCukesTest {
}
view raw 2.cuketest.java hosted with ❤ by GitHub
In console should display something like this
You can implement missing steps with the snippets below:
@When("^User Navigate to LogIn Page$")
public void user_Navigate_to_LogIn_Page() throws Throwable {
// Write code here that turns the phrase above into concrete actions
throw new PendingException();
}
@When("^User enters UserName and Password$")
public void user_enters_UserName_and_Password() throws Throwable {
// Write code here that turns the phrase above into concrete actions
throw new PendingException();
}
@Then("^Message displayed Login Successfully$")
public void message_displayed_Login_Successfully() throws Throwable {
// Write code here that turns the phrase above into concrete actions
throw new PendingException();
}
Step 3 : Now create the proper step definition for feature file as this
package MavenTest.DemoMavenCucumber;
import java.util.concurrent.TimeUnit;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.firefox.FirefoxDriver;
import org.openqa.selenium.support.ui.ExpectedConditions;
import org.openqa.selenium.support.ui.WebDriverWait;
import cucumber.api.java.en.Then;
import cucumber.api.java.en.When;
public class LoginAnukoTimeSheetStepDef {
static WebDriver driver = null;
@When("^User Navigate to LogIn Page$")
public void user_Navigate_to_LogIn_Page() throws Throwable {
// Write code here that turns the phrase above into concrete actions
driver = new FirefoxDriver();
driver.get("https://timetracker.anuko.com/login.php");
driver.manage().timeouts().implicitlyWait(10, TimeUnit.SECONDS);
driver.manage().window().maximize();
}
@When("^User enters UserName and Password$")
public void user_enters_UserName_and_Password() throws Throwable {
// Write code here that turns the phrase above into concrete actions
WebElement enterusername=driver.findElement(By.id("login"));
waitforelement(enterusername);
// if success then enter data to username
enterusername.sendKeys("guest");
WebElement enterpwd=driver.findElement(By.id("password"));
waitforelement(enterpwd);
// if success then enter data to username
enterpwd.sendKeys("guest");
// to click on button
WebElement loginbtn=driver.findElement(By.id("btn_login"));
waitforelement(loginbtn);
// if success then enter data to username
loginbtn.click();
}
public static String waitforelement(WebElement element) {
// TODO Auto-generated method stub
String msg;
try {
WebDriverWait wait = new WebDriverWait(driver, 30);
// below method will check for visibility of the element i.e in this case its username element
wait.until(ExpectedConditions.visibilityOf(element));
msg="PASS";
System.out.println(msg);
} catch (Exception e) {
System.out.println("waitForElementPresent method failed! "+ e.getMessage());
msg="FAIL -waitForElementPresent method failed! "+ e.getMessage() ;
}
return msg;
}
@Then("^Message displayed Login Successfully$")
public void message_displayed_Login_Successfully() throws Throwable {
// Write code here that turns the phrase above into concrete actions
System.out.println("Login successful ");
}
}
view raw 4.stepdef.java hosted with ❤ by GitHub




Step4 : Run the cukes file now 

if you are getting error like this, better download latest version of selenium jar and add the class path manually as show in below snapshot. 
      Caused by: java.lang.ClassNotFoundException: com.google.common.base.Optional



To run script follow the below snapshot



5. Report - go to project and target folder to view the reports.




and then report should look like this.



That's it we seen how to write simple feature file. definition file and run the Junit test and view the report.

Thanks


No comments:

Post a Comment

Note: Only a member of this blog may post a comment.