@Given("the Customer has selected Checkout from the cart page")
public void the_customer_has_selected_checkout_from_the_cart_page() {
// Write code here that turns the phrase above into concrete actions
throw new io.cucumber.java.PendingException();
}
@When("the Customer populates the page with their information:")
public void the_customer_populates_the_page_with_their_information(io.cucumber.datatable.DataTable dataTable) {
// Write code here that turns the phrase above into concrete actions
// For automatic transformation, change DataTable to one of
// E, List<E>, List<List<E>>, List<Map<K,V>>, Map<K,V> or
// Map<K, List<V>>. E,K,V must be a String, Integer, Float,
// Double, Byte, Short, Long, BigInteger or BigDecimal.
//
// For other transformations you can register a DataTableType.
throw new io.cucumber.java.PendingException();
}
@Then("the Customer clicks next")
public void the_customer_clicks_next() {
// Write code here that turns the phrase above into concrete actions
throw new io.cucumber.java.PendingException();
}
@Then("the Customer is on the payment page")
public void the_customer_is_on_the_payment_page() {
// Write code here that turns the phrase above into concrete actions
throw new io.cucumber.java.PendingException();
}