step_file_name
stringclasses 26
values | scenario
stringlengths 13
161
| step_function
stringlengths 33
2.68k
| page_function
stringlengths 41
4.12k
| step_function_scenario
stringlengths 59
2.81k
| code
stringlengths 110
4.43k
| text
stringlengths 305
4.7k
|
---|---|---|---|---|---|---|
UserManagementSteps.java
|
I verify delete user pop up should open
|
public void ThenIVerifyDeleteUserPopUpShouldOpen()
{
userManagementPage.varifyDeleteUserPopupOpened();
}
|
public void varifyDeleteUserPopupOpened() {
Assert.assertTrue(deleteUserPopup.isVisible());
}
|
@Then("I verify delete user pop up should open$")
public void ThenIVerifyDeleteUserPopUpShouldOpen()
{
userManagementPage.varifyDeleteUserPopupOpened();
}
|
//step_function:
public void ThenIVerifyDeleteUserPopUpShouldOpen()
{
userManagementPage.varifyDeleteUserPopupOpened();
}
//page_function:
public void varifyDeleteUserPopupOpened() {
Assert.assertTrue(deleteUserPopup.isVisible());
}
|
As a Quality Assurance Manager, write step definition and page definition code using Java with Cucumber framework for the below given instruction.
###
instruction:
I verify delete user pop up should open
###
response:
//step_function:
public void ThenIVerifyDeleteUserPopUpShouldOpen()
{
userManagementPage.varifyDeleteUserPopupOpened();
}
//page_function:
public void varifyDeleteUserPopupOpened() {
Assert.assertTrue(deleteUserPopup.isVisible());
}
|
UserManagementSteps.java
|
I click on Delete User button on delete user pop up
|
public void ThenIClickOnDeleteUserButtonOnDeleteUserPopUp() throws InterruptedException
{
userManagementPage.clickOnDeleteUserButton();
}
|
public void clickOnDeleteUserButton() throws InterruptedException {
deleteUserButton.click();
Thread.sleep(2000);
}
|
@Then("I click on Delete User button on delete user pop up$")
public void ThenIClickOnDeleteUserButtonOnDeleteUserPopUp() throws InterruptedException
{
userManagementPage.clickOnDeleteUserButton();
}
|
//step_function:
public void ThenIClickOnDeleteUserButtonOnDeleteUserPopUp() throws InterruptedException
{
userManagementPage.clickOnDeleteUserButton();
}
//page_function:
public void clickOnDeleteUserButton() throws InterruptedException {
deleteUserButton.click();
Thread.sleep(2000);
}
|
As a Quality Assurance Manager, write step definition and page definition code using Java with Cucumber framework for the below given instruction.
###
instruction:
I click on Delete User button on delete user pop up
###
response:
//step_function:
public void ThenIClickOnDeleteUserButtonOnDeleteUserPopUp() throws InterruptedException
{
userManagementPage.clickOnDeleteUserButton();
}
//page_function:
public void clickOnDeleteUserButton() throws InterruptedException {
deleteUserButton.click();
Thread.sleep(2000);
}
|
UserManagementSteps.java
|
After fetching data from data file )?I enter group name (.*) in group pop up
|
public void enterEmailOrMobile(String file, String value) throws Throwable {
if((file!=null)&&(file.contains("data file")))
value=commonPage.fetchDataFromDataProperties(value);
userManagementPage.enterGroupName(value+generatedString);
}
|
public String fetchDataFromDataProperties(String key) throws FileNotFoundException, IOException {
properties=new Properties();
properties.load(new FileInputStream(new File("./data.properties")));
String value=properties.getProperty(key);
return value;
}
|
@When("^(After fetching data from data file )?I enter group name (.*) in group pop up$")
public void enterEmailOrMobile(String file, String value) throws Throwable {
if((file!=null)&&(file.contains("data file")))
value=commonPage.fetchDataFromDataProperties(value);
userManagementPage.enterGroupName(value+generatedString);
}
|
//step_function:
public void enterEmailOrMobile(String file, String value) throws Throwable {
if((file!=null)&&(file.contains("data file")))
value=commonPage.fetchDataFromDataProperties(value);
userManagementPage.enterGroupName(value+generatedString);
}
//page_function:
public String fetchDataFromDataProperties(String key) throws FileNotFoundException, IOException {
properties=new Properties();
properties.load(new FileInputStream(new File("./data.properties")));
String value=properties.getProperty(key);
return value;
}
|
As a Quality Assurance Manager, write step definition and page definition code using Java with Cucumber framework for the below given instruction.
###
instruction:
After fetching data from data file )?I enter group name (.*) in group pop up
###
response:
//step_function:
public void enterEmailOrMobile(String file, String value) throws Throwable {
if((file!=null)&&(file.contains("data file")))
value=commonPage.fetchDataFromDataProperties(value);
userManagementPage.enterGroupName(value+generatedString);
}
//page_function:
public String fetchDataFromDataProperties(String key) throws FileNotFoundException, IOException {
properties=new Properties();
properties.load(new FileInputStream(new File("./data.properties")));
String value=properties.getProperty(key);
return value;
}
|
UserManagementSteps.java
|
I search for location (.*) and select searched location from dropdown
|
public void ThenISearchForLocationAndSelectThatLocationFromDropdown(String location)
{
userManagementPage.clickOnMappedLocations();
userManagementPage.searchForRequiredLocation(location);
userManagementPage.selectLocationFromThedropdown(1);
}
|
public void clickOnMappedLocations() {
MappedLocations.click();
}
|
@Then("I search for location (.*) and select searched location from dropdown$")
public void ThenISearchForLocationAndSelectThatLocationFromDropdown(String location)
{
userManagementPage.clickOnMappedLocations();
userManagementPage.searchForRequiredLocation(location);
userManagementPage.selectLocationFromThedropdown(1);
}
|
//step_function:
public void ThenISearchForLocationAndSelectThatLocationFromDropdown(String location)
{
userManagementPage.clickOnMappedLocations();
userManagementPage.searchForRequiredLocation(location);
userManagementPage.selectLocationFromThedropdown(1);
}
//page_function:
public void clickOnMappedLocations() {
MappedLocations.click();
}
|
As a Quality Assurance Manager, write step definition and page definition code using Java with Cucumber framework for the below given instruction.
###
instruction:
I search for location (.*) and select searched location from dropdown
###
response:
//step_function:
public void ThenISearchForLocationAndSelectThatLocationFromDropdown(String location)
{
userManagementPage.clickOnMappedLocations();
userManagementPage.searchForRequiredLocation(location);
userManagementPage.selectLocationFromThedropdown(1);
}
//page_function:
public void clickOnMappedLocations() {
MappedLocations.click();
}
|
UserManagementSteps.java
|
I select (.*) location from the list
|
public void ThenISelectLocationFromTheList(int locationNumberInDropdown) throws InterruptedException
{
userManagementPage.clickOnMappedLocations();
userManagementPage.selectNthLocationFromThedropdown(locationNumberInDropdown);
}
|
public void clickOnMappedLocations() {
MappedLocations.click();
}
|
@Then("I select (.*) location from the list$")
public void ThenISelectLocationFromTheList(int locationNumberInDropdown) throws InterruptedException
{
userManagementPage.clickOnMappedLocations();
userManagementPage.selectNthLocationFromThedropdown(locationNumberInDropdown);
}
|
//step_function:
public void ThenISelectLocationFromTheList(int locationNumberInDropdown) throws InterruptedException
{
userManagementPage.clickOnMappedLocations();
userManagementPage.selectNthLocationFromThedropdown(locationNumberInDropdown);
}
//page_function:
public void clickOnMappedLocations() {
MappedLocations.click();
}
|
As a Quality Assurance Manager, write step definition and page definition code using Java with Cucumber framework for the below given instruction.
###
instruction:
I select (.*) location from the list
###
response:
//step_function:
public void ThenISelectLocationFromTheList(int locationNumberInDropdown) throws InterruptedException
{
userManagementPage.clickOnMappedLocations();
userManagementPage.selectNthLocationFromThedropdown(locationNumberInDropdown);
}
//page_function:
public void clickOnMappedLocations() {
MappedLocations.click();
}
|
UserManagementSteps.java
|
I click on Submit button on create group pop up
|
public void ThenIClickOnSubmitButtonOnCreateGroupPopUp()
{
userManagementPage.clickOnSubmitCreateGroupButton();
}
|
public void clickOnSubmitCreateGroupButton() {
submitCreateGroup.click();
}
|
@Then("I click on Submit button on create group pop up$")
public void ThenIClickOnSubmitButtonOnCreateGroupPopUp()
{
userManagementPage.clickOnSubmitCreateGroupButton();
}
|
//step_function:
public void ThenIClickOnSubmitButtonOnCreateGroupPopUp()
{
userManagementPage.clickOnSubmitCreateGroupButton();
}
//page_function:
public void clickOnSubmitCreateGroupButton() {
submitCreateGroup.click();
}
|
As a Quality Assurance Manager, write step definition and page definition code using Java with Cucumber framework for the below given instruction.
###
instruction:
I click on Submit button on create group pop up
###
response:
//step_function:
public void ThenIClickOnSubmitButtonOnCreateGroupPopUp()
{
userManagementPage.clickOnSubmitCreateGroupButton();
}
//page_function:
public void clickOnSubmitCreateGroupButton() {
submitCreateGroup.click();
}
|
UserManagementSteps.java
|
I click on Submit button on edit group pop up
|
public void ThenIClickOnSubmitButtonOnEditGroupPopUp()
{
userManagementPage.clickOnSubmitEditGroupButton();
}
|
public void clickOnSubmitEditGroupButton() {
clickOn(submitEditGroup);
}
|
@Then("I click on Submit button on edit group pop up$")
public void ThenIClickOnSubmitButtonOnEditGroupPopUp()
{
userManagementPage.clickOnSubmitEditGroupButton();
}
|
//step_function:
public void ThenIClickOnSubmitButtonOnEditGroupPopUp()
{
userManagementPage.clickOnSubmitEditGroupButton();
}
//page_function:
public void clickOnSubmitEditGroupButton() {
clickOn(submitEditGroup);
}
|
As a Quality Assurance Manager, write step definition and page definition code using Java with Cucumber framework for the below given instruction.
###
instruction:
I click on Submit button on edit group pop up
###
response:
//step_function:
public void ThenIClickOnSubmitButtonOnEditGroupPopUp()
{
userManagementPage.clickOnSubmitEditGroupButton();
}
//page_function:
public void clickOnSubmitEditGroupButton() {
clickOn(submitEditGroup);
}
|
UserManagementSteps.java
|
After fetching data from data file)? I click on group (.*
|
public void ThenIClickOnGroupGroupThreeGroupThreeGroupThree(String file,String value) throws FileNotFoundException, IOException
{
if((file!=null)&&(file.contains("data file")))
value=commonPage.fetchDataFromDataProperties(value);
userManagementPage.clickOnGroup(value+generatedString);
}
|
public String fetchDataFromDataProperties(String key) throws FileNotFoundException, IOException {
properties=new Properties();
properties.load(new FileInputStream(new File("./data.properties")));
String value=properties.getProperty(key);
return value;
}
|
@Then("^(After fetching data from data file)? I click on group (.*)$")
public void ThenIClickOnGroupGroupThreeGroupThreeGroupThree(String file,String value) throws FileNotFoundException, IOException
{
if((file!=null)&&(file.contains("data file")))
value=commonPage.fetchDataFromDataProperties(value);
userManagementPage.clickOnGroup(value+generatedString);
}
|
//step_function:
public void ThenIClickOnGroupGroupThreeGroupThreeGroupThree(String file,String value) throws FileNotFoundException, IOException
{
if((file!=null)&&(file.contains("data file")))
value=commonPage.fetchDataFromDataProperties(value);
userManagementPage.clickOnGroup(value+generatedString);
}
//page_function:
public String fetchDataFromDataProperties(String key) throws FileNotFoundException, IOException {
properties=new Properties();
properties.load(new FileInputStream(new File("./data.properties")));
String value=properties.getProperty(key);
return value;
}
|
As a Quality Assurance Manager, write step definition and page definition code using Java with Cucumber framework for the below given instruction.
###
instruction:
After fetching data from data file)? I click on group (.*
###
response:
//step_function:
public void ThenIClickOnGroupGroupThreeGroupThreeGroupThree(String file,String value) throws FileNotFoundException, IOException
{
if((file!=null)&&(file.contains("data file")))
value=commonPage.fetchDataFromDataProperties(value);
userManagementPage.clickOnGroup(value+generatedString);
}
//page_function:
public String fetchDataFromDataProperties(String key) throws FileNotFoundException, IOException {
properties=new Properties();
properties.load(new FileInputStream(new File("./data.properties")));
String value=properties.getProperty(key);
return value;
}
|
UserManagementSteps.java
|
After fetching data from data file)? I validate group (.*) is created or edited
|
public void ThenIValidateGroupAutomationNewGroupIsCreatedOrEdited(String file,String value) throws FileNotFoundException, IOException
{
if((file!=null)&&(file.contains("data file")))
value=commonPage.fetchDataFromDataProperties(value);
userManagementPage.verifyGroupCreatedOrUpdated(value+generatedString);
}
|
public String fetchDataFromDataProperties(String key) throws FileNotFoundException, IOException {
properties=new Properties();
properties.load(new FileInputStream(new File("./data.properties")));
String value=properties.getProperty(key);
return value;
}
|
@Then("^(After fetching data from data file)? I validate group (.*) is created or edited$")
public void ThenIValidateGroupAutomationNewGroupIsCreatedOrEdited(String file,String value) throws FileNotFoundException, IOException
{
if((file!=null)&&(file.contains("data file")))
value=commonPage.fetchDataFromDataProperties(value);
userManagementPage.verifyGroupCreatedOrUpdated(value+generatedString);
}
|
//step_function:
public void ThenIValidateGroupAutomationNewGroupIsCreatedOrEdited(String file,String value) throws FileNotFoundException, IOException
{
if((file!=null)&&(file.contains("data file")))
value=commonPage.fetchDataFromDataProperties(value);
userManagementPage.verifyGroupCreatedOrUpdated(value+generatedString);
}
//page_function:
public String fetchDataFromDataProperties(String key) throws FileNotFoundException, IOException {
properties=new Properties();
properties.load(new FileInputStream(new File("./data.properties")));
String value=properties.getProperty(key);
return value;
}
|
As a Quality Assurance Manager, write step definition and page definition code using Java with Cucumber framework for the below given instruction.
###
instruction:
After fetching data from data file)? I validate group (.*) is created or edited
###
response:
//step_function:
public void ThenIValidateGroupAutomationNewGroupIsCreatedOrEdited(String file,String value) throws FileNotFoundException, IOException
{
if((file!=null)&&(file.contains("data file")))
value=commonPage.fetchDataFromDataProperties(value);
userManagementPage.verifyGroupCreatedOrUpdated(value+generatedString);
}
//page_function:
public String fetchDataFromDataProperties(String key) throws FileNotFoundException, IOException {
properties=new Properties();
properties.load(new FileInputStream(new File("./data.properties")));
String value=properties.getProperty(key);
return value;
}
|
UserManagementSteps.java
|
I click on pencil icon to edit group
|
public void ThenIClickOnPencilIconToEditGroup()
{
userManagementPage.clickOnPencilIconToEditGroup();
}
|
public void clickOnPencilIconToEditGroup() {
clickOn(editGroup);
}
|
@Then("I click on pencil icon to edit group$")
public void ThenIClickOnPencilIconToEditGroup()
{
userManagementPage.clickOnPencilIconToEditGroup();
}
|
//step_function:
public void ThenIClickOnPencilIconToEditGroup()
{
userManagementPage.clickOnPencilIconToEditGroup();
}
//page_function:
public void clickOnPencilIconToEditGroup() {
clickOn(editGroup);
}
|
As a Quality Assurance Manager, write step definition and page definition code using Java with Cucumber framework for the below given instruction.
###
instruction:
I click on pencil icon to edit group
###
response:
//step_function:
public void ThenIClickOnPencilIconToEditGroup()
{
userManagementPage.clickOnPencilIconToEditGroup();
}
//page_function:
public void clickOnPencilIconToEditGroup() {
clickOn(editGroup);
}
|
UserManagementSteps.java
|
I edit group name to (.*
|
public void ThenIEditGroupNameToAutomationGroupEdited(String groupName)
{
userManagementPage.enterGroupName(groupName+generatedString);
}
|
public void enterGroupName(String groupname) {
groupName.clear();
typeInto(groupName,groupname);
}
|
@Then("I edit group name to (.*)$")
public void ThenIEditGroupNameToAutomationGroupEdited(String groupName)
{
userManagementPage.enterGroupName(groupName+generatedString);
}
|
//step_function:
public void ThenIEditGroupNameToAutomationGroupEdited(String groupName)
{
userManagementPage.enterGroupName(groupName+generatedString);
}
//page_function:
public void enterGroupName(String groupname) {
groupName.clear();
typeInto(groupName,groupname);
}
|
As a Quality Assurance Manager, write step definition and page definition code using Java with Cucumber framework for the below given instruction.
###
instruction:
I edit group name to (.*
###
response:
//step_function:
public void ThenIEditGroupNameToAutomationGroupEdited(String groupName)
{
userManagementPage.enterGroupName(groupName+generatedString);
}
//page_function:
public void enterGroupName(String groupname) {
groupName.clear();
typeInto(groupName,groupname);
}
|
UserManagementSteps.java
|
I click on Cancel button to close groups popup
|
public void ThenIClickOnCancelButtonToCloseGroupsPopup()
{
userManagementPage.clickCancelGroupspopup();
}
|
public void clickCancelGroupspopup() {
clickOn(cancelGroupspopup);
}
|
@Then("I click on Cancel button to close groups popup$")
public void ThenIClickOnCancelButtonToCloseGroupsPopup()
{
userManagementPage.clickCancelGroupspopup();
}
|
//step_function:
public void ThenIClickOnCancelButtonToCloseGroupsPopup()
{
userManagementPage.clickCancelGroupspopup();
}
//page_function:
public void clickCancelGroupspopup() {
clickOn(cancelGroupspopup);
}
|
As a Quality Assurance Manager, write step definition and page definition code using Java with Cucumber framework for the below given instruction.
###
instruction:
I click on Cancel button to close groups popup
###
response:
//step_function:
public void ThenIClickOnCancelButtonToCloseGroupsPopup()
{
userManagementPage.clickCancelGroupspopup();
}
//page_function:
public void clickCancelGroupspopup() {
clickOn(cancelGroupspopup);
}
|
UserManagementSteps.java
|
I validate user is deleted
|
public void GivenIValidateUserIsDeleted()
{
userManagementPage.verifyUserIsDeleted();
}
|
public void verifyUserIsDeleted() {
Assert.assertTrue(noUserAvailable.isVisible());
}
|
@Given("I validate user is deleted$")
public void GivenIValidateUserIsDeleted()
{
userManagementPage.verifyUserIsDeleted();
}
|
//step_function:
public void GivenIValidateUserIsDeleted()
{
userManagementPage.verifyUserIsDeleted();
}
//page_function:
public void verifyUserIsDeleted() {
Assert.assertTrue(noUserAvailable.isVisible());
}
|
As a Quality Assurance Manager, write step definition and page definition code using Java with Cucumber framework for the below given instruction.
###
instruction:
I validate user is deleted
###
response:
//step_function:
public void GivenIValidateUserIsDeleted()
{
userManagementPage.verifyUserIsDeleted();
}
//page_function:
public void verifyUserIsDeleted() {
Assert.assertTrue(noUserAvailable.isVisible());
}
|
UserManagementSteps.java
|
I get error message (.*) for firstname
|
public void ThenIGetErrorMessageForFirstname(String expectedError) throws Exception
{
expectedError=commonPage.fetchUserManagementErrorMessageConstantsfromEnum(expectedError);
userManagementPage.validateErrorMessage("First Name", expectedError);
}
|
public String fetchUserManagementErrorMessageConstantsfromEnum(String expectedError) throws Exception {
switch(expectedError) {
case "INVALID_FIRSTNAME_ERROR":
expectedError=UserManagementErrorMessagesEnum.INVALID_FIRSTNAME_ERROR.getValue();
break;
case "INVALID_LASSTNAME_ERROR":
expectedError=UserManagementErrorMessagesEnum.INVALID_LASSTNAME_ERROR.getValue();
break;
case "FIRSTNAME_NUMBER_SPECIAL_CHAR_ERROR":
expectedError=UserManagementErrorMessagesEnum.FIRSTNAME_NUMBER_SPECIAL_CHAR_ERROR.getValue();
break;
case "LASTNAME_NUMBER_SPECIAL_CHAR_ERROR":
expectedError=UserManagementErrorMessagesEnum.LASTNAME_NUMBER_SPECIAL_CHAR_ERROR.getValue();
break;
case "INVALID_MOBILE_ERROR":
expectedError=UserManagementErrorMessagesEnum.INVALID_MOBILE_ERROR.getValue();
break;
case "MOBILE_START_ZERO_ERROR":
expectedError=UserManagementErrorMessagesEnum.MOBILE_START_ZERO_ERROR.getValue();
break;
case "INVALID_EMAIL_ERROR":
expectedError=UserManagementErrorMessagesEnum.INVALID_EMAIL_ERROR.getValue();
break;
case "EMAIL_MAX_50_CHARS":
expectedError=UserManagementErrorMessagesEnum.EMAIL_MAX_50_CHARS.getValue();
break;
case "SELECT_ROLE_ERROR":
expectedError=UserManagementErrorMessagesEnum.SELECT_ROLE_ERROR.getValue();
break;
case "SELECT_MAPPED_LOCATIONS_ERROR":
expectedError=UserManagementErrorMessagesEnum.SELECT_MAPPED_LOCATIONS_ERROR.getValue();
break;
case "FIRSTNAME_MAX_30_CHARS":
expectedError=UserManagementErrorMessagesEnum.FIRSTNAME_MAX_30_CHARS.getValue();
break;
case "LASTNAME_MAX_25_CHARS":
expectedError=UserManagementErrorMessagesEnum.LASTNAME_MAX_25_CHARS.getValue();
break;
case "INVALID_GROUPNAME_ERROR":
expectedError=UserManagementErrorMessagesEnum.INVALID_GROUPNAME_ERROR.getValue();
break;
case "GROUPNAME_NUMBER_SPECIAL_CHAR_ERROR":
expectedError=UserManagementErrorMessagesEnum.GROUPNAME_NUMBER_SPECIAL_CHAR_ERROR.getValue();
break;
case "GROUPNAME_MAX_30_CHARS":
expectedError=UserManagementErrorMessagesEnum.GROUPNAME_MAX_30_CHARS.getValue();
break;
default:
throw new Exception("This Expected Error in feature file is not present in the list of expected errors in switch case or Enum file");
}
|
@Then("I get error message (.*) for firstname$")
public void ThenIGetErrorMessageForFirstname(String expectedError) throws Exception
{
expectedError=commonPage.fetchUserManagementErrorMessageConstantsfromEnum(expectedError);
userManagementPage.validateErrorMessage("First Name", expectedError);
}
|
//step_function:
public void ThenIGetErrorMessageForFirstname(String expectedError) throws Exception
{
expectedError=commonPage.fetchUserManagementErrorMessageConstantsfromEnum(expectedError);
userManagementPage.validateErrorMessage("First Name", expectedError);
}
//page_function:
public String fetchUserManagementErrorMessageConstantsfromEnum(String expectedError) throws Exception {
switch(expectedError) {
case "INVALID_FIRSTNAME_ERROR":
expectedError=UserManagementErrorMessagesEnum.INVALID_FIRSTNAME_ERROR.getValue();
break;
case "INVALID_LASSTNAME_ERROR":
expectedError=UserManagementErrorMessagesEnum.INVALID_LASSTNAME_ERROR.getValue();
break;
case "FIRSTNAME_NUMBER_SPECIAL_CHAR_ERROR":
expectedError=UserManagementErrorMessagesEnum.FIRSTNAME_NUMBER_SPECIAL_CHAR_ERROR.getValue();
break;
case "LASTNAME_NUMBER_SPECIAL_CHAR_ERROR":
expectedError=UserManagementErrorMessagesEnum.LASTNAME_NUMBER_SPECIAL_CHAR_ERROR.getValue();
break;
case "INVALID_MOBILE_ERROR":
expectedError=UserManagementErrorMessagesEnum.INVALID_MOBILE_ERROR.getValue();
break;
case "MOBILE_START_ZERO_ERROR":
expectedError=UserManagementErrorMessagesEnum.MOBILE_START_ZERO_ERROR.getValue();
break;
case "INVALID_EMAIL_ERROR":
expectedError=UserManagementErrorMessagesEnum.INVALID_EMAIL_ERROR.getValue();
break;
case "EMAIL_MAX_50_CHARS":
expectedError=UserManagementErrorMessagesEnum.EMAIL_MAX_50_CHARS.getValue();
break;
case "SELECT_ROLE_ERROR":
expectedError=UserManagementErrorMessagesEnum.SELECT_ROLE_ERROR.getValue();
break;
case "SELECT_MAPPED_LOCATIONS_ERROR":
expectedError=UserManagementErrorMessagesEnum.SELECT_MAPPED_LOCATIONS_ERROR.getValue();
break;
case "FIRSTNAME_MAX_30_CHARS":
expectedError=UserManagementErrorMessagesEnum.FIRSTNAME_MAX_30_CHARS.getValue();
break;
case "LASTNAME_MAX_25_CHARS":
expectedError=UserManagementErrorMessagesEnum.LASTNAME_MAX_25_CHARS.getValue();
break;
case "INVALID_GROUPNAME_ERROR":
expectedError=UserManagementErrorMessagesEnum.INVALID_GROUPNAME_ERROR.getValue();
break;
case "GROUPNAME_NUMBER_SPECIAL_CHAR_ERROR":
expectedError=UserManagementErrorMessagesEnum.GROUPNAME_NUMBER_SPECIAL_CHAR_ERROR.getValue();
break;
case "GROUPNAME_MAX_30_CHARS":
expectedError=UserManagementErrorMessagesEnum.GROUPNAME_MAX_30_CHARS.getValue();
break;
default:
throw new Exception("This Expected Error in feature file is not present in the list of expected errors in switch case or Enum file");
}
|
As a Quality Assurance Manager, write step definition and page definition code using Java with Cucumber framework for the below given instruction.
###
instruction:
I get error message (.*) for firstname
###
response:
//step_function:
public void ThenIGetErrorMessageForFirstname(String expectedError) throws Exception
{
expectedError=commonPage.fetchUserManagementErrorMessageConstantsfromEnum(expectedError);
userManagementPage.validateErrorMessage("First Name", expectedError);
}
//page_function:
public String fetchUserManagementErrorMessageConstantsfromEnum(String expectedError) throws Exception {
switch(expectedError) {
case "INVALID_FIRSTNAME_ERROR":
expectedError=UserManagementErrorMessagesEnum.INVALID_FIRSTNAME_ERROR.getValue();
break;
case "INVALID_LASSTNAME_ERROR":
expectedError=UserManagementErrorMessagesEnum.INVALID_LASSTNAME_ERROR.getValue();
break;
case "FIRSTNAME_NUMBER_SPECIAL_CHAR_ERROR":
expectedError=UserManagementErrorMessagesEnum.FIRSTNAME_NUMBER_SPECIAL_CHAR_ERROR.getValue();
break;
case "LASTNAME_NUMBER_SPECIAL_CHAR_ERROR":
expectedError=UserManagementErrorMessagesEnum.LASTNAME_NUMBER_SPECIAL_CHAR_ERROR.getValue();
break;
case "INVALID_MOBILE_ERROR":
expectedError=UserManagementErrorMessagesEnum.INVALID_MOBILE_ERROR.getValue();
break;
case "MOBILE_START_ZERO_ERROR":
expectedError=UserManagementErrorMessagesEnum.MOBILE_START_ZERO_ERROR.getValue();
break;
case "INVALID_EMAIL_ERROR":
expectedError=UserManagementErrorMessagesEnum.INVALID_EMAIL_ERROR.getValue();
break;
case "EMAIL_MAX_50_CHARS":
expectedError=UserManagementErrorMessagesEnum.EMAIL_MAX_50_CHARS.getValue();
break;
case "SELECT_ROLE_ERROR":
expectedError=UserManagementErrorMessagesEnum.SELECT_ROLE_ERROR.getValue();
break;
case "SELECT_MAPPED_LOCATIONS_ERROR":
expectedError=UserManagementErrorMessagesEnum.SELECT_MAPPED_LOCATIONS_ERROR.getValue();
break;
case "FIRSTNAME_MAX_30_CHARS":
expectedError=UserManagementErrorMessagesEnum.FIRSTNAME_MAX_30_CHARS.getValue();
break;
case "LASTNAME_MAX_25_CHARS":
expectedError=UserManagementErrorMessagesEnum.LASTNAME_MAX_25_CHARS.getValue();
break;
case "INVALID_GROUPNAME_ERROR":
expectedError=UserManagementErrorMessagesEnum.INVALID_GROUPNAME_ERROR.getValue();
break;
case "GROUPNAME_NUMBER_SPECIAL_CHAR_ERROR":
expectedError=UserManagementErrorMessagesEnum.GROUPNAME_NUMBER_SPECIAL_CHAR_ERROR.getValue();
break;
case "GROUPNAME_MAX_30_CHARS":
expectedError=UserManagementErrorMessagesEnum.GROUPNAME_MAX_30_CHARS.getValue();
break;
default:
throw new Exception("This Expected Error in feature file is not present in the list of expected errors in switch case or Enum file");
}
|
UserManagementSteps.java
|
I get error message (.*) for lastname
|
public void ThenIGetErrorMessageForLastname(String expectedError) throws Exception
{
expectedError=commonPage.fetchUserManagementErrorMessageConstantsfromEnum(expectedError);
userManagementPage.validateErrorMessage("Last Name", expectedError);
}
|
public String fetchUserManagementErrorMessageConstantsfromEnum(String expectedError) throws Exception {
switch(expectedError) {
case "INVALID_FIRSTNAME_ERROR":
expectedError=UserManagementErrorMessagesEnum.INVALID_FIRSTNAME_ERROR.getValue();
break;
case "INVALID_LASSTNAME_ERROR":
expectedError=UserManagementErrorMessagesEnum.INVALID_LASSTNAME_ERROR.getValue();
break;
case "FIRSTNAME_NUMBER_SPECIAL_CHAR_ERROR":
expectedError=UserManagementErrorMessagesEnum.FIRSTNAME_NUMBER_SPECIAL_CHAR_ERROR.getValue();
break;
case "LASTNAME_NUMBER_SPECIAL_CHAR_ERROR":
expectedError=UserManagementErrorMessagesEnum.LASTNAME_NUMBER_SPECIAL_CHAR_ERROR.getValue();
break;
case "INVALID_MOBILE_ERROR":
expectedError=UserManagementErrorMessagesEnum.INVALID_MOBILE_ERROR.getValue();
break;
case "MOBILE_START_ZERO_ERROR":
expectedError=UserManagementErrorMessagesEnum.MOBILE_START_ZERO_ERROR.getValue();
break;
case "INVALID_EMAIL_ERROR":
expectedError=UserManagementErrorMessagesEnum.INVALID_EMAIL_ERROR.getValue();
break;
case "EMAIL_MAX_50_CHARS":
expectedError=UserManagementErrorMessagesEnum.EMAIL_MAX_50_CHARS.getValue();
break;
case "SELECT_ROLE_ERROR":
expectedError=UserManagementErrorMessagesEnum.SELECT_ROLE_ERROR.getValue();
break;
case "SELECT_MAPPED_LOCATIONS_ERROR":
expectedError=UserManagementErrorMessagesEnum.SELECT_MAPPED_LOCATIONS_ERROR.getValue();
break;
case "FIRSTNAME_MAX_30_CHARS":
expectedError=UserManagementErrorMessagesEnum.FIRSTNAME_MAX_30_CHARS.getValue();
break;
case "LASTNAME_MAX_25_CHARS":
expectedError=UserManagementErrorMessagesEnum.LASTNAME_MAX_25_CHARS.getValue();
break;
case "INVALID_GROUPNAME_ERROR":
expectedError=UserManagementErrorMessagesEnum.INVALID_GROUPNAME_ERROR.getValue();
break;
case "GROUPNAME_NUMBER_SPECIAL_CHAR_ERROR":
expectedError=UserManagementErrorMessagesEnum.GROUPNAME_NUMBER_SPECIAL_CHAR_ERROR.getValue();
break;
case "GROUPNAME_MAX_30_CHARS":
expectedError=UserManagementErrorMessagesEnum.GROUPNAME_MAX_30_CHARS.getValue();
break;
default:
throw new Exception("This Expected Error in feature file is not present in the list of expected errors in switch case or Enum file");
}
|
@Then("I get error message (.*) for lastname$")
public void ThenIGetErrorMessageForLastname(String expectedError) throws Exception
{
expectedError=commonPage.fetchUserManagementErrorMessageConstantsfromEnum(expectedError);
userManagementPage.validateErrorMessage("Last Name", expectedError);
}
|
//step_function:
public void ThenIGetErrorMessageForLastname(String expectedError) throws Exception
{
expectedError=commonPage.fetchUserManagementErrorMessageConstantsfromEnum(expectedError);
userManagementPage.validateErrorMessage("Last Name", expectedError);
}
//page_function:
public String fetchUserManagementErrorMessageConstantsfromEnum(String expectedError) throws Exception {
switch(expectedError) {
case "INVALID_FIRSTNAME_ERROR":
expectedError=UserManagementErrorMessagesEnum.INVALID_FIRSTNAME_ERROR.getValue();
break;
case "INVALID_LASSTNAME_ERROR":
expectedError=UserManagementErrorMessagesEnum.INVALID_LASSTNAME_ERROR.getValue();
break;
case "FIRSTNAME_NUMBER_SPECIAL_CHAR_ERROR":
expectedError=UserManagementErrorMessagesEnum.FIRSTNAME_NUMBER_SPECIAL_CHAR_ERROR.getValue();
break;
case "LASTNAME_NUMBER_SPECIAL_CHAR_ERROR":
expectedError=UserManagementErrorMessagesEnum.LASTNAME_NUMBER_SPECIAL_CHAR_ERROR.getValue();
break;
case "INVALID_MOBILE_ERROR":
expectedError=UserManagementErrorMessagesEnum.INVALID_MOBILE_ERROR.getValue();
break;
case "MOBILE_START_ZERO_ERROR":
expectedError=UserManagementErrorMessagesEnum.MOBILE_START_ZERO_ERROR.getValue();
break;
case "INVALID_EMAIL_ERROR":
expectedError=UserManagementErrorMessagesEnum.INVALID_EMAIL_ERROR.getValue();
break;
case "EMAIL_MAX_50_CHARS":
expectedError=UserManagementErrorMessagesEnum.EMAIL_MAX_50_CHARS.getValue();
break;
case "SELECT_ROLE_ERROR":
expectedError=UserManagementErrorMessagesEnum.SELECT_ROLE_ERROR.getValue();
break;
case "SELECT_MAPPED_LOCATIONS_ERROR":
expectedError=UserManagementErrorMessagesEnum.SELECT_MAPPED_LOCATIONS_ERROR.getValue();
break;
case "FIRSTNAME_MAX_30_CHARS":
expectedError=UserManagementErrorMessagesEnum.FIRSTNAME_MAX_30_CHARS.getValue();
break;
case "LASTNAME_MAX_25_CHARS":
expectedError=UserManagementErrorMessagesEnum.LASTNAME_MAX_25_CHARS.getValue();
break;
case "INVALID_GROUPNAME_ERROR":
expectedError=UserManagementErrorMessagesEnum.INVALID_GROUPNAME_ERROR.getValue();
break;
case "GROUPNAME_NUMBER_SPECIAL_CHAR_ERROR":
expectedError=UserManagementErrorMessagesEnum.GROUPNAME_NUMBER_SPECIAL_CHAR_ERROR.getValue();
break;
case "GROUPNAME_MAX_30_CHARS":
expectedError=UserManagementErrorMessagesEnum.GROUPNAME_MAX_30_CHARS.getValue();
break;
default:
throw new Exception("This Expected Error in feature file is not present in the list of expected errors in switch case or Enum file");
}
|
As a Quality Assurance Manager, write step definition and page definition code using Java with Cucumber framework for the below given instruction.
###
instruction:
I get error message (.*) for lastname
###
response:
//step_function:
public void ThenIGetErrorMessageForLastname(String expectedError) throws Exception
{
expectedError=commonPage.fetchUserManagementErrorMessageConstantsfromEnum(expectedError);
userManagementPage.validateErrorMessage("Last Name", expectedError);
}
//page_function:
public String fetchUserManagementErrorMessageConstantsfromEnum(String expectedError) throws Exception {
switch(expectedError) {
case "INVALID_FIRSTNAME_ERROR":
expectedError=UserManagementErrorMessagesEnum.INVALID_FIRSTNAME_ERROR.getValue();
break;
case "INVALID_LASSTNAME_ERROR":
expectedError=UserManagementErrorMessagesEnum.INVALID_LASSTNAME_ERROR.getValue();
break;
case "FIRSTNAME_NUMBER_SPECIAL_CHAR_ERROR":
expectedError=UserManagementErrorMessagesEnum.FIRSTNAME_NUMBER_SPECIAL_CHAR_ERROR.getValue();
break;
case "LASTNAME_NUMBER_SPECIAL_CHAR_ERROR":
expectedError=UserManagementErrorMessagesEnum.LASTNAME_NUMBER_SPECIAL_CHAR_ERROR.getValue();
break;
case "INVALID_MOBILE_ERROR":
expectedError=UserManagementErrorMessagesEnum.INVALID_MOBILE_ERROR.getValue();
break;
case "MOBILE_START_ZERO_ERROR":
expectedError=UserManagementErrorMessagesEnum.MOBILE_START_ZERO_ERROR.getValue();
break;
case "INVALID_EMAIL_ERROR":
expectedError=UserManagementErrorMessagesEnum.INVALID_EMAIL_ERROR.getValue();
break;
case "EMAIL_MAX_50_CHARS":
expectedError=UserManagementErrorMessagesEnum.EMAIL_MAX_50_CHARS.getValue();
break;
case "SELECT_ROLE_ERROR":
expectedError=UserManagementErrorMessagesEnum.SELECT_ROLE_ERROR.getValue();
break;
case "SELECT_MAPPED_LOCATIONS_ERROR":
expectedError=UserManagementErrorMessagesEnum.SELECT_MAPPED_LOCATIONS_ERROR.getValue();
break;
case "FIRSTNAME_MAX_30_CHARS":
expectedError=UserManagementErrorMessagesEnum.FIRSTNAME_MAX_30_CHARS.getValue();
break;
case "LASTNAME_MAX_25_CHARS":
expectedError=UserManagementErrorMessagesEnum.LASTNAME_MAX_25_CHARS.getValue();
break;
case "INVALID_GROUPNAME_ERROR":
expectedError=UserManagementErrorMessagesEnum.INVALID_GROUPNAME_ERROR.getValue();
break;
case "GROUPNAME_NUMBER_SPECIAL_CHAR_ERROR":
expectedError=UserManagementErrorMessagesEnum.GROUPNAME_NUMBER_SPECIAL_CHAR_ERROR.getValue();
break;
case "GROUPNAME_MAX_30_CHARS":
expectedError=UserManagementErrorMessagesEnum.GROUPNAME_MAX_30_CHARS.getValue();
break;
default:
throw new Exception("This Expected Error in feature file is not present in the list of expected errors in switch case or Enum file");
}
|
UserManagementSteps.java
|
I get error message (.*) for mobile_number
|
public void ThenIGetErrorMessageForMobile_Number(String expectedError) throws Exception
{
expectedError=commonPage.fetchUserManagementErrorMessageConstantsfromEnum(expectedError);
userManagementPage.validateErrorMessage("Mobile Number", expectedError);
}
|
public String fetchUserManagementErrorMessageConstantsfromEnum(String expectedError) throws Exception {
switch(expectedError) {
case "INVALID_FIRSTNAME_ERROR":
expectedError=UserManagementErrorMessagesEnum.INVALID_FIRSTNAME_ERROR.getValue();
break;
case "INVALID_LASSTNAME_ERROR":
expectedError=UserManagementErrorMessagesEnum.INVALID_LASSTNAME_ERROR.getValue();
break;
case "FIRSTNAME_NUMBER_SPECIAL_CHAR_ERROR":
expectedError=UserManagementErrorMessagesEnum.FIRSTNAME_NUMBER_SPECIAL_CHAR_ERROR.getValue();
break;
case "LASTNAME_NUMBER_SPECIAL_CHAR_ERROR":
expectedError=UserManagementErrorMessagesEnum.LASTNAME_NUMBER_SPECIAL_CHAR_ERROR.getValue();
break;
case "INVALID_MOBILE_ERROR":
expectedError=UserManagementErrorMessagesEnum.INVALID_MOBILE_ERROR.getValue();
break;
case "MOBILE_START_ZERO_ERROR":
expectedError=UserManagementErrorMessagesEnum.MOBILE_START_ZERO_ERROR.getValue();
break;
case "INVALID_EMAIL_ERROR":
expectedError=UserManagementErrorMessagesEnum.INVALID_EMAIL_ERROR.getValue();
break;
case "EMAIL_MAX_50_CHARS":
expectedError=UserManagementErrorMessagesEnum.EMAIL_MAX_50_CHARS.getValue();
break;
case "SELECT_ROLE_ERROR":
expectedError=UserManagementErrorMessagesEnum.SELECT_ROLE_ERROR.getValue();
break;
case "SELECT_MAPPED_LOCATIONS_ERROR":
expectedError=UserManagementErrorMessagesEnum.SELECT_MAPPED_LOCATIONS_ERROR.getValue();
break;
case "FIRSTNAME_MAX_30_CHARS":
expectedError=UserManagementErrorMessagesEnum.FIRSTNAME_MAX_30_CHARS.getValue();
break;
case "LASTNAME_MAX_25_CHARS":
expectedError=UserManagementErrorMessagesEnum.LASTNAME_MAX_25_CHARS.getValue();
break;
case "INVALID_GROUPNAME_ERROR":
expectedError=UserManagementErrorMessagesEnum.INVALID_GROUPNAME_ERROR.getValue();
break;
case "GROUPNAME_NUMBER_SPECIAL_CHAR_ERROR":
expectedError=UserManagementErrorMessagesEnum.GROUPNAME_NUMBER_SPECIAL_CHAR_ERROR.getValue();
break;
case "GROUPNAME_MAX_30_CHARS":
expectedError=UserManagementErrorMessagesEnum.GROUPNAME_MAX_30_CHARS.getValue();
break;
default:
throw new Exception("This Expected Error in feature file is not present in the list of expected errors in switch case or Enum file");
}
|
@Then("I get error message (.*) for mobile_number$")
public void ThenIGetErrorMessageForMobile_Number(String expectedError) throws Exception
{
expectedError=commonPage.fetchUserManagementErrorMessageConstantsfromEnum(expectedError);
userManagementPage.validateErrorMessage("Mobile Number", expectedError);
}
|
//step_function:
public void ThenIGetErrorMessageForMobile_Number(String expectedError) throws Exception
{
expectedError=commonPage.fetchUserManagementErrorMessageConstantsfromEnum(expectedError);
userManagementPage.validateErrorMessage("Mobile Number", expectedError);
}
//page_function:
public String fetchUserManagementErrorMessageConstantsfromEnum(String expectedError) throws Exception {
switch(expectedError) {
case "INVALID_FIRSTNAME_ERROR":
expectedError=UserManagementErrorMessagesEnum.INVALID_FIRSTNAME_ERROR.getValue();
break;
case "INVALID_LASSTNAME_ERROR":
expectedError=UserManagementErrorMessagesEnum.INVALID_LASSTNAME_ERROR.getValue();
break;
case "FIRSTNAME_NUMBER_SPECIAL_CHAR_ERROR":
expectedError=UserManagementErrorMessagesEnum.FIRSTNAME_NUMBER_SPECIAL_CHAR_ERROR.getValue();
break;
case "LASTNAME_NUMBER_SPECIAL_CHAR_ERROR":
expectedError=UserManagementErrorMessagesEnum.LASTNAME_NUMBER_SPECIAL_CHAR_ERROR.getValue();
break;
case "INVALID_MOBILE_ERROR":
expectedError=UserManagementErrorMessagesEnum.INVALID_MOBILE_ERROR.getValue();
break;
case "MOBILE_START_ZERO_ERROR":
expectedError=UserManagementErrorMessagesEnum.MOBILE_START_ZERO_ERROR.getValue();
break;
case "INVALID_EMAIL_ERROR":
expectedError=UserManagementErrorMessagesEnum.INVALID_EMAIL_ERROR.getValue();
break;
case "EMAIL_MAX_50_CHARS":
expectedError=UserManagementErrorMessagesEnum.EMAIL_MAX_50_CHARS.getValue();
break;
case "SELECT_ROLE_ERROR":
expectedError=UserManagementErrorMessagesEnum.SELECT_ROLE_ERROR.getValue();
break;
case "SELECT_MAPPED_LOCATIONS_ERROR":
expectedError=UserManagementErrorMessagesEnum.SELECT_MAPPED_LOCATIONS_ERROR.getValue();
break;
case "FIRSTNAME_MAX_30_CHARS":
expectedError=UserManagementErrorMessagesEnum.FIRSTNAME_MAX_30_CHARS.getValue();
break;
case "LASTNAME_MAX_25_CHARS":
expectedError=UserManagementErrorMessagesEnum.LASTNAME_MAX_25_CHARS.getValue();
break;
case "INVALID_GROUPNAME_ERROR":
expectedError=UserManagementErrorMessagesEnum.INVALID_GROUPNAME_ERROR.getValue();
break;
case "GROUPNAME_NUMBER_SPECIAL_CHAR_ERROR":
expectedError=UserManagementErrorMessagesEnum.GROUPNAME_NUMBER_SPECIAL_CHAR_ERROR.getValue();
break;
case "GROUPNAME_MAX_30_CHARS":
expectedError=UserManagementErrorMessagesEnum.GROUPNAME_MAX_30_CHARS.getValue();
break;
default:
throw new Exception("This Expected Error in feature file is not present in the list of expected errors in switch case or Enum file");
}
|
As a Quality Assurance Manager, write step definition and page definition code using Java with Cucumber framework for the below given instruction.
###
instruction:
I get error message (.*) for mobile_number
###
response:
//step_function:
public void ThenIGetErrorMessageForMobile_Number(String expectedError) throws Exception
{
expectedError=commonPage.fetchUserManagementErrorMessageConstantsfromEnum(expectedError);
userManagementPage.validateErrorMessage("Mobile Number", expectedError);
}
//page_function:
public String fetchUserManagementErrorMessageConstantsfromEnum(String expectedError) throws Exception {
switch(expectedError) {
case "INVALID_FIRSTNAME_ERROR":
expectedError=UserManagementErrorMessagesEnum.INVALID_FIRSTNAME_ERROR.getValue();
break;
case "INVALID_LASSTNAME_ERROR":
expectedError=UserManagementErrorMessagesEnum.INVALID_LASSTNAME_ERROR.getValue();
break;
case "FIRSTNAME_NUMBER_SPECIAL_CHAR_ERROR":
expectedError=UserManagementErrorMessagesEnum.FIRSTNAME_NUMBER_SPECIAL_CHAR_ERROR.getValue();
break;
case "LASTNAME_NUMBER_SPECIAL_CHAR_ERROR":
expectedError=UserManagementErrorMessagesEnum.LASTNAME_NUMBER_SPECIAL_CHAR_ERROR.getValue();
break;
case "INVALID_MOBILE_ERROR":
expectedError=UserManagementErrorMessagesEnum.INVALID_MOBILE_ERROR.getValue();
break;
case "MOBILE_START_ZERO_ERROR":
expectedError=UserManagementErrorMessagesEnum.MOBILE_START_ZERO_ERROR.getValue();
break;
case "INVALID_EMAIL_ERROR":
expectedError=UserManagementErrorMessagesEnum.INVALID_EMAIL_ERROR.getValue();
break;
case "EMAIL_MAX_50_CHARS":
expectedError=UserManagementErrorMessagesEnum.EMAIL_MAX_50_CHARS.getValue();
break;
case "SELECT_ROLE_ERROR":
expectedError=UserManagementErrorMessagesEnum.SELECT_ROLE_ERROR.getValue();
break;
case "SELECT_MAPPED_LOCATIONS_ERROR":
expectedError=UserManagementErrorMessagesEnum.SELECT_MAPPED_LOCATIONS_ERROR.getValue();
break;
case "FIRSTNAME_MAX_30_CHARS":
expectedError=UserManagementErrorMessagesEnum.FIRSTNAME_MAX_30_CHARS.getValue();
break;
case "LASTNAME_MAX_25_CHARS":
expectedError=UserManagementErrorMessagesEnum.LASTNAME_MAX_25_CHARS.getValue();
break;
case "INVALID_GROUPNAME_ERROR":
expectedError=UserManagementErrorMessagesEnum.INVALID_GROUPNAME_ERROR.getValue();
break;
case "GROUPNAME_NUMBER_SPECIAL_CHAR_ERROR":
expectedError=UserManagementErrorMessagesEnum.GROUPNAME_NUMBER_SPECIAL_CHAR_ERROR.getValue();
break;
case "GROUPNAME_MAX_30_CHARS":
expectedError=UserManagementErrorMessagesEnum.GROUPNAME_MAX_30_CHARS.getValue();
break;
default:
throw new Exception("This Expected Error in feature file is not present in the list of expected errors in switch case or Enum file");
}
|
UserManagementSteps.java
|
I get error message (.*) for email
|
public void ThenIGetErrorMessageForEmail(String expectedError) throws Exception
{
expectedError=commonPage.fetchUserManagementErrorMessageConstantsfromEnum(expectedError);
userManagementPage.validateErrorMessage("Email ID", expectedError);
}
|
public String fetchUserManagementErrorMessageConstantsfromEnum(String expectedError) throws Exception {
switch(expectedError) {
case "INVALID_FIRSTNAME_ERROR":
expectedError=UserManagementErrorMessagesEnum.INVALID_FIRSTNAME_ERROR.getValue();
break;
case "INVALID_LASSTNAME_ERROR":
expectedError=UserManagementErrorMessagesEnum.INVALID_LASSTNAME_ERROR.getValue();
break;
case "FIRSTNAME_NUMBER_SPECIAL_CHAR_ERROR":
expectedError=UserManagementErrorMessagesEnum.FIRSTNAME_NUMBER_SPECIAL_CHAR_ERROR.getValue();
break;
case "LASTNAME_NUMBER_SPECIAL_CHAR_ERROR":
expectedError=UserManagementErrorMessagesEnum.LASTNAME_NUMBER_SPECIAL_CHAR_ERROR.getValue();
break;
case "INVALID_MOBILE_ERROR":
expectedError=UserManagementErrorMessagesEnum.INVALID_MOBILE_ERROR.getValue();
break;
case "MOBILE_START_ZERO_ERROR":
expectedError=UserManagementErrorMessagesEnum.MOBILE_START_ZERO_ERROR.getValue();
break;
case "INVALID_EMAIL_ERROR":
expectedError=UserManagementErrorMessagesEnum.INVALID_EMAIL_ERROR.getValue();
break;
case "EMAIL_MAX_50_CHARS":
expectedError=UserManagementErrorMessagesEnum.EMAIL_MAX_50_CHARS.getValue();
break;
case "SELECT_ROLE_ERROR":
expectedError=UserManagementErrorMessagesEnum.SELECT_ROLE_ERROR.getValue();
break;
case "SELECT_MAPPED_LOCATIONS_ERROR":
expectedError=UserManagementErrorMessagesEnum.SELECT_MAPPED_LOCATIONS_ERROR.getValue();
break;
case "FIRSTNAME_MAX_30_CHARS":
expectedError=UserManagementErrorMessagesEnum.FIRSTNAME_MAX_30_CHARS.getValue();
break;
case "LASTNAME_MAX_25_CHARS":
expectedError=UserManagementErrorMessagesEnum.LASTNAME_MAX_25_CHARS.getValue();
break;
case "INVALID_GROUPNAME_ERROR":
expectedError=UserManagementErrorMessagesEnum.INVALID_GROUPNAME_ERROR.getValue();
break;
case "GROUPNAME_NUMBER_SPECIAL_CHAR_ERROR":
expectedError=UserManagementErrorMessagesEnum.GROUPNAME_NUMBER_SPECIAL_CHAR_ERROR.getValue();
break;
case "GROUPNAME_MAX_30_CHARS":
expectedError=UserManagementErrorMessagesEnum.GROUPNAME_MAX_30_CHARS.getValue();
break;
default:
throw new Exception("This Expected Error in feature file is not present in the list of expected errors in switch case or Enum file");
}
|
@Then("I get error message (.*) for email$")
public void ThenIGetErrorMessageForEmail(String expectedError) throws Exception
{
expectedError=commonPage.fetchUserManagementErrorMessageConstantsfromEnum(expectedError);
userManagementPage.validateErrorMessage("Email ID", expectedError);
}
|
//step_function:
public void ThenIGetErrorMessageForEmail(String expectedError) throws Exception
{
expectedError=commonPage.fetchUserManagementErrorMessageConstantsfromEnum(expectedError);
userManagementPage.validateErrorMessage("Email ID", expectedError);
}
//page_function:
public String fetchUserManagementErrorMessageConstantsfromEnum(String expectedError) throws Exception {
switch(expectedError) {
case "INVALID_FIRSTNAME_ERROR":
expectedError=UserManagementErrorMessagesEnum.INVALID_FIRSTNAME_ERROR.getValue();
break;
case "INVALID_LASSTNAME_ERROR":
expectedError=UserManagementErrorMessagesEnum.INVALID_LASSTNAME_ERROR.getValue();
break;
case "FIRSTNAME_NUMBER_SPECIAL_CHAR_ERROR":
expectedError=UserManagementErrorMessagesEnum.FIRSTNAME_NUMBER_SPECIAL_CHAR_ERROR.getValue();
break;
case "LASTNAME_NUMBER_SPECIAL_CHAR_ERROR":
expectedError=UserManagementErrorMessagesEnum.LASTNAME_NUMBER_SPECIAL_CHAR_ERROR.getValue();
break;
case "INVALID_MOBILE_ERROR":
expectedError=UserManagementErrorMessagesEnum.INVALID_MOBILE_ERROR.getValue();
break;
case "MOBILE_START_ZERO_ERROR":
expectedError=UserManagementErrorMessagesEnum.MOBILE_START_ZERO_ERROR.getValue();
break;
case "INVALID_EMAIL_ERROR":
expectedError=UserManagementErrorMessagesEnum.INVALID_EMAIL_ERROR.getValue();
break;
case "EMAIL_MAX_50_CHARS":
expectedError=UserManagementErrorMessagesEnum.EMAIL_MAX_50_CHARS.getValue();
break;
case "SELECT_ROLE_ERROR":
expectedError=UserManagementErrorMessagesEnum.SELECT_ROLE_ERROR.getValue();
break;
case "SELECT_MAPPED_LOCATIONS_ERROR":
expectedError=UserManagementErrorMessagesEnum.SELECT_MAPPED_LOCATIONS_ERROR.getValue();
break;
case "FIRSTNAME_MAX_30_CHARS":
expectedError=UserManagementErrorMessagesEnum.FIRSTNAME_MAX_30_CHARS.getValue();
break;
case "LASTNAME_MAX_25_CHARS":
expectedError=UserManagementErrorMessagesEnum.LASTNAME_MAX_25_CHARS.getValue();
break;
case "INVALID_GROUPNAME_ERROR":
expectedError=UserManagementErrorMessagesEnum.INVALID_GROUPNAME_ERROR.getValue();
break;
case "GROUPNAME_NUMBER_SPECIAL_CHAR_ERROR":
expectedError=UserManagementErrorMessagesEnum.GROUPNAME_NUMBER_SPECIAL_CHAR_ERROR.getValue();
break;
case "GROUPNAME_MAX_30_CHARS":
expectedError=UserManagementErrorMessagesEnum.GROUPNAME_MAX_30_CHARS.getValue();
break;
default:
throw new Exception("This Expected Error in feature file is not present in the list of expected errors in switch case or Enum file");
}
|
As a Quality Assurance Manager, write step definition and page definition code using Java with Cucumber framework for the below given instruction.
###
instruction:
I get error message (.*) for email
###
response:
//step_function:
public void ThenIGetErrorMessageForEmail(String expectedError) throws Exception
{
expectedError=commonPage.fetchUserManagementErrorMessageConstantsfromEnum(expectedError);
userManagementPage.validateErrorMessage("Email ID", expectedError);
}
//page_function:
public String fetchUserManagementErrorMessageConstantsfromEnum(String expectedError) throws Exception {
switch(expectedError) {
case "INVALID_FIRSTNAME_ERROR":
expectedError=UserManagementErrorMessagesEnum.INVALID_FIRSTNAME_ERROR.getValue();
break;
case "INVALID_LASSTNAME_ERROR":
expectedError=UserManagementErrorMessagesEnum.INVALID_LASSTNAME_ERROR.getValue();
break;
case "FIRSTNAME_NUMBER_SPECIAL_CHAR_ERROR":
expectedError=UserManagementErrorMessagesEnum.FIRSTNAME_NUMBER_SPECIAL_CHAR_ERROR.getValue();
break;
case "LASTNAME_NUMBER_SPECIAL_CHAR_ERROR":
expectedError=UserManagementErrorMessagesEnum.LASTNAME_NUMBER_SPECIAL_CHAR_ERROR.getValue();
break;
case "INVALID_MOBILE_ERROR":
expectedError=UserManagementErrorMessagesEnum.INVALID_MOBILE_ERROR.getValue();
break;
case "MOBILE_START_ZERO_ERROR":
expectedError=UserManagementErrorMessagesEnum.MOBILE_START_ZERO_ERROR.getValue();
break;
case "INVALID_EMAIL_ERROR":
expectedError=UserManagementErrorMessagesEnum.INVALID_EMAIL_ERROR.getValue();
break;
case "EMAIL_MAX_50_CHARS":
expectedError=UserManagementErrorMessagesEnum.EMAIL_MAX_50_CHARS.getValue();
break;
case "SELECT_ROLE_ERROR":
expectedError=UserManagementErrorMessagesEnum.SELECT_ROLE_ERROR.getValue();
break;
case "SELECT_MAPPED_LOCATIONS_ERROR":
expectedError=UserManagementErrorMessagesEnum.SELECT_MAPPED_LOCATIONS_ERROR.getValue();
break;
case "FIRSTNAME_MAX_30_CHARS":
expectedError=UserManagementErrorMessagesEnum.FIRSTNAME_MAX_30_CHARS.getValue();
break;
case "LASTNAME_MAX_25_CHARS":
expectedError=UserManagementErrorMessagesEnum.LASTNAME_MAX_25_CHARS.getValue();
break;
case "INVALID_GROUPNAME_ERROR":
expectedError=UserManagementErrorMessagesEnum.INVALID_GROUPNAME_ERROR.getValue();
break;
case "GROUPNAME_NUMBER_SPECIAL_CHAR_ERROR":
expectedError=UserManagementErrorMessagesEnum.GROUPNAME_NUMBER_SPECIAL_CHAR_ERROR.getValue();
break;
case "GROUPNAME_MAX_30_CHARS":
expectedError=UserManagementErrorMessagesEnum.GROUPNAME_MAX_30_CHARS.getValue();
break;
default:
throw new Exception("This Expected Error in feature file is not present in the list of expected errors in switch case or Enum file");
}
|
UserManagementSteps.java
|
I get error message (.*) for select user role
|
public void ThenIGetErrorMessageForSelectUserRole(String expectedError) throws Exception
{
expectedError=commonPage.fetchUserManagementErrorMessageConstantsfromEnum(expectedError);
userManagementPage.validateErrorMessage("Select Role", expectedError);
}
|
public String fetchUserManagementErrorMessageConstantsfromEnum(String expectedError) throws Exception {
switch(expectedError) {
case "INVALID_FIRSTNAME_ERROR":
expectedError=UserManagementErrorMessagesEnum.INVALID_FIRSTNAME_ERROR.getValue();
break;
case "INVALID_LASSTNAME_ERROR":
expectedError=UserManagementErrorMessagesEnum.INVALID_LASSTNAME_ERROR.getValue();
break;
case "FIRSTNAME_NUMBER_SPECIAL_CHAR_ERROR":
expectedError=UserManagementErrorMessagesEnum.FIRSTNAME_NUMBER_SPECIAL_CHAR_ERROR.getValue();
break;
case "LASTNAME_NUMBER_SPECIAL_CHAR_ERROR":
expectedError=UserManagementErrorMessagesEnum.LASTNAME_NUMBER_SPECIAL_CHAR_ERROR.getValue();
break;
case "INVALID_MOBILE_ERROR":
expectedError=UserManagementErrorMessagesEnum.INVALID_MOBILE_ERROR.getValue();
break;
case "MOBILE_START_ZERO_ERROR":
expectedError=UserManagementErrorMessagesEnum.MOBILE_START_ZERO_ERROR.getValue();
break;
case "INVALID_EMAIL_ERROR":
expectedError=UserManagementErrorMessagesEnum.INVALID_EMAIL_ERROR.getValue();
break;
case "EMAIL_MAX_50_CHARS":
expectedError=UserManagementErrorMessagesEnum.EMAIL_MAX_50_CHARS.getValue();
break;
case "SELECT_ROLE_ERROR":
expectedError=UserManagementErrorMessagesEnum.SELECT_ROLE_ERROR.getValue();
break;
case "SELECT_MAPPED_LOCATIONS_ERROR":
expectedError=UserManagementErrorMessagesEnum.SELECT_MAPPED_LOCATIONS_ERROR.getValue();
break;
case "FIRSTNAME_MAX_30_CHARS":
expectedError=UserManagementErrorMessagesEnum.FIRSTNAME_MAX_30_CHARS.getValue();
break;
case "LASTNAME_MAX_25_CHARS":
expectedError=UserManagementErrorMessagesEnum.LASTNAME_MAX_25_CHARS.getValue();
break;
case "INVALID_GROUPNAME_ERROR":
expectedError=UserManagementErrorMessagesEnum.INVALID_GROUPNAME_ERROR.getValue();
break;
case "GROUPNAME_NUMBER_SPECIAL_CHAR_ERROR":
expectedError=UserManagementErrorMessagesEnum.GROUPNAME_NUMBER_SPECIAL_CHAR_ERROR.getValue();
break;
case "GROUPNAME_MAX_30_CHARS":
expectedError=UserManagementErrorMessagesEnum.GROUPNAME_MAX_30_CHARS.getValue();
break;
default:
throw new Exception("This Expected Error in feature file is not present in the list of expected errors in switch case or Enum file");
}
|
@Then("I get error message (.*) for select user role$")
public void ThenIGetErrorMessageForSelectUserRole(String expectedError) throws Exception
{
expectedError=commonPage.fetchUserManagementErrorMessageConstantsfromEnum(expectedError);
userManagementPage.validateErrorMessage("Select Role", expectedError);
}
|
//step_function:
public void ThenIGetErrorMessageForSelectUserRole(String expectedError) throws Exception
{
expectedError=commonPage.fetchUserManagementErrorMessageConstantsfromEnum(expectedError);
userManagementPage.validateErrorMessage("Select Role", expectedError);
}
//page_function:
public String fetchUserManagementErrorMessageConstantsfromEnum(String expectedError) throws Exception {
switch(expectedError) {
case "INVALID_FIRSTNAME_ERROR":
expectedError=UserManagementErrorMessagesEnum.INVALID_FIRSTNAME_ERROR.getValue();
break;
case "INVALID_LASSTNAME_ERROR":
expectedError=UserManagementErrorMessagesEnum.INVALID_LASSTNAME_ERROR.getValue();
break;
case "FIRSTNAME_NUMBER_SPECIAL_CHAR_ERROR":
expectedError=UserManagementErrorMessagesEnum.FIRSTNAME_NUMBER_SPECIAL_CHAR_ERROR.getValue();
break;
case "LASTNAME_NUMBER_SPECIAL_CHAR_ERROR":
expectedError=UserManagementErrorMessagesEnum.LASTNAME_NUMBER_SPECIAL_CHAR_ERROR.getValue();
break;
case "INVALID_MOBILE_ERROR":
expectedError=UserManagementErrorMessagesEnum.INVALID_MOBILE_ERROR.getValue();
break;
case "MOBILE_START_ZERO_ERROR":
expectedError=UserManagementErrorMessagesEnum.MOBILE_START_ZERO_ERROR.getValue();
break;
case "INVALID_EMAIL_ERROR":
expectedError=UserManagementErrorMessagesEnum.INVALID_EMAIL_ERROR.getValue();
break;
case "EMAIL_MAX_50_CHARS":
expectedError=UserManagementErrorMessagesEnum.EMAIL_MAX_50_CHARS.getValue();
break;
case "SELECT_ROLE_ERROR":
expectedError=UserManagementErrorMessagesEnum.SELECT_ROLE_ERROR.getValue();
break;
case "SELECT_MAPPED_LOCATIONS_ERROR":
expectedError=UserManagementErrorMessagesEnum.SELECT_MAPPED_LOCATIONS_ERROR.getValue();
break;
case "FIRSTNAME_MAX_30_CHARS":
expectedError=UserManagementErrorMessagesEnum.FIRSTNAME_MAX_30_CHARS.getValue();
break;
case "LASTNAME_MAX_25_CHARS":
expectedError=UserManagementErrorMessagesEnum.LASTNAME_MAX_25_CHARS.getValue();
break;
case "INVALID_GROUPNAME_ERROR":
expectedError=UserManagementErrorMessagesEnum.INVALID_GROUPNAME_ERROR.getValue();
break;
case "GROUPNAME_NUMBER_SPECIAL_CHAR_ERROR":
expectedError=UserManagementErrorMessagesEnum.GROUPNAME_NUMBER_SPECIAL_CHAR_ERROR.getValue();
break;
case "GROUPNAME_MAX_30_CHARS":
expectedError=UserManagementErrorMessagesEnum.GROUPNAME_MAX_30_CHARS.getValue();
break;
default:
throw new Exception("This Expected Error in feature file is not present in the list of expected errors in switch case or Enum file");
}
|
As a Quality Assurance Manager, write step definition and page definition code using Java with Cucumber framework for the below given instruction.
###
instruction:
I get error message (.*) for select user role
###
response:
//step_function:
public void ThenIGetErrorMessageForSelectUserRole(String expectedError) throws Exception
{
expectedError=commonPage.fetchUserManagementErrorMessageConstantsfromEnum(expectedError);
userManagementPage.validateErrorMessage("Select Role", expectedError);
}
//page_function:
public String fetchUserManagementErrorMessageConstantsfromEnum(String expectedError) throws Exception {
switch(expectedError) {
case "INVALID_FIRSTNAME_ERROR":
expectedError=UserManagementErrorMessagesEnum.INVALID_FIRSTNAME_ERROR.getValue();
break;
case "INVALID_LASSTNAME_ERROR":
expectedError=UserManagementErrorMessagesEnum.INVALID_LASSTNAME_ERROR.getValue();
break;
case "FIRSTNAME_NUMBER_SPECIAL_CHAR_ERROR":
expectedError=UserManagementErrorMessagesEnum.FIRSTNAME_NUMBER_SPECIAL_CHAR_ERROR.getValue();
break;
case "LASTNAME_NUMBER_SPECIAL_CHAR_ERROR":
expectedError=UserManagementErrorMessagesEnum.LASTNAME_NUMBER_SPECIAL_CHAR_ERROR.getValue();
break;
case "INVALID_MOBILE_ERROR":
expectedError=UserManagementErrorMessagesEnum.INVALID_MOBILE_ERROR.getValue();
break;
case "MOBILE_START_ZERO_ERROR":
expectedError=UserManagementErrorMessagesEnum.MOBILE_START_ZERO_ERROR.getValue();
break;
case "INVALID_EMAIL_ERROR":
expectedError=UserManagementErrorMessagesEnum.INVALID_EMAIL_ERROR.getValue();
break;
case "EMAIL_MAX_50_CHARS":
expectedError=UserManagementErrorMessagesEnum.EMAIL_MAX_50_CHARS.getValue();
break;
case "SELECT_ROLE_ERROR":
expectedError=UserManagementErrorMessagesEnum.SELECT_ROLE_ERROR.getValue();
break;
case "SELECT_MAPPED_LOCATIONS_ERROR":
expectedError=UserManagementErrorMessagesEnum.SELECT_MAPPED_LOCATIONS_ERROR.getValue();
break;
case "FIRSTNAME_MAX_30_CHARS":
expectedError=UserManagementErrorMessagesEnum.FIRSTNAME_MAX_30_CHARS.getValue();
break;
case "LASTNAME_MAX_25_CHARS":
expectedError=UserManagementErrorMessagesEnum.LASTNAME_MAX_25_CHARS.getValue();
break;
case "INVALID_GROUPNAME_ERROR":
expectedError=UserManagementErrorMessagesEnum.INVALID_GROUPNAME_ERROR.getValue();
break;
case "GROUPNAME_NUMBER_SPECIAL_CHAR_ERROR":
expectedError=UserManagementErrorMessagesEnum.GROUPNAME_NUMBER_SPECIAL_CHAR_ERROR.getValue();
break;
case "GROUPNAME_MAX_30_CHARS":
expectedError=UserManagementErrorMessagesEnum.GROUPNAME_MAX_30_CHARS.getValue();
break;
default:
throw new Exception("This Expected Error in feature file is not present in the list of expected errors in switch case or Enum file");
}
|
UserManagementSteps.java
|
I get error message (.*) for groupname
|
public void ThenIGetErrorMessageForGroupName(String expectedError) throws Exception
{
expectedError=commonPage.fetchUserManagementErrorMessageConstantsfromEnum(expectedError);
userManagementPage.validateErrorMessage("Group Name", expectedError);
}
|
public String fetchUserManagementErrorMessageConstantsfromEnum(String expectedError) throws Exception {
switch(expectedError) {
case "INVALID_FIRSTNAME_ERROR":
expectedError=UserManagementErrorMessagesEnum.INVALID_FIRSTNAME_ERROR.getValue();
break;
case "INVALID_LASSTNAME_ERROR":
expectedError=UserManagementErrorMessagesEnum.INVALID_LASSTNAME_ERROR.getValue();
break;
case "FIRSTNAME_NUMBER_SPECIAL_CHAR_ERROR":
expectedError=UserManagementErrorMessagesEnum.FIRSTNAME_NUMBER_SPECIAL_CHAR_ERROR.getValue();
break;
case "LASTNAME_NUMBER_SPECIAL_CHAR_ERROR":
expectedError=UserManagementErrorMessagesEnum.LASTNAME_NUMBER_SPECIAL_CHAR_ERROR.getValue();
break;
case "INVALID_MOBILE_ERROR":
expectedError=UserManagementErrorMessagesEnum.INVALID_MOBILE_ERROR.getValue();
break;
case "MOBILE_START_ZERO_ERROR":
expectedError=UserManagementErrorMessagesEnum.MOBILE_START_ZERO_ERROR.getValue();
break;
case "INVALID_EMAIL_ERROR":
expectedError=UserManagementErrorMessagesEnum.INVALID_EMAIL_ERROR.getValue();
break;
case "EMAIL_MAX_50_CHARS":
expectedError=UserManagementErrorMessagesEnum.EMAIL_MAX_50_CHARS.getValue();
break;
case "SELECT_ROLE_ERROR":
expectedError=UserManagementErrorMessagesEnum.SELECT_ROLE_ERROR.getValue();
break;
case "SELECT_MAPPED_LOCATIONS_ERROR":
expectedError=UserManagementErrorMessagesEnum.SELECT_MAPPED_LOCATIONS_ERROR.getValue();
break;
case "FIRSTNAME_MAX_30_CHARS":
expectedError=UserManagementErrorMessagesEnum.FIRSTNAME_MAX_30_CHARS.getValue();
break;
case "LASTNAME_MAX_25_CHARS":
expectedError=UserManagementErrorMessagesEnum.LASTNAME_MAX_25_CHARS.getValue();
break;
case "INVALID_GROUPNAME_ERROR":
expectedError=UserManagementErrorMessagesEnum.INVALID_GROUPNAME_ERROR.getValue();
break;
case "GROUPNAME_NUMBER_SPECIAL_CHAR_ERROR":
expectedError=UserManagementErrorMessagesEnum.GROUPNAME_NUMBER_SPECIAL_CHAR_ERROR.getValue();
break;
case "GROUPNAME_MAX_30_CHARS":
expectedError=UserManagementErrorMessagesEnum.GROUPNAME_MAX_30_CHARS.getValue();
break;
default:
throw new Exception("This Expected Error in feature file is not present in the list of expected errors in switch case or Enum file");
}
|
@Then("I get error message (.*) for groupname$")
public void ThenIGetErrorMessageForGroupName(String expectedError) throws Exception
{
expectedError=commonPage.fetchUserManagementErrorMessageConstantsfromEnum(expectedError);
userManagementPage.validateErrorMessage("Group Name", expectedError);
}
|
//step_function:
public void ThenIGetErrorMessageForGroupName(String expectedError) throws Exception
{
expectedError=commonPage.fetchUserManagementErrorMessageConstantsfromEnum(expectedError);
userManagementPage.validateErrorMessage("Group Name", expectedError);
}
//page_function:
public String fetchUserManagementErrorMessageConstantsfromEnum(String expectedError) throws Exception {
switch(expectedError) {
case "INVALID_FIRSTNAME_ERROR":
expectedError=UserManagementErrorMessagesEnum.INVALID_FIRSTNAME_ERROR.getValue();
break;
case "INVALID_LASSTNAME_ERROR":
expectedError=UserManagementErrorMessagesEnum.INVALID_LASSTNAME_ERROR.getValue();
break;
case "FIRSTNAME_NUMBER_SPECIAL_CHAR_ERROR":
expectedError=UserManagementErrorMessagesEnum.FIRSTNAME_NUMBER_SPECIAL_CHAR_ERROR.getValue();
break;
case "LASTNAME_NUMBER_SPECIAL_CHAR_ERROR":
expectedError=UserManagementErrorMessagesEnum.LASTNAME_NUMBER_SPECIAL_CHAR_ERROR.getValue();
break;
case "INVALID_MOBILE_ERROR":
expectedError=UserManagementErrorMessagesEnum.INVALID_MOBILE_ERROR.getValue();
break;
case "MOBILE_START_ZERO_ERROR":
expectedError=UserManagementErrorMessagesEnum.MOBILE_START_ZERO_ERROR.getValue();
break;
case "INVALID_EMAIL_ERROR":
expectedError=UserManagementErrorMessagesEnum.INVALID_EMAIL_ERROR.getValue();
break;
case "EMAIL_MAX_50_CHARS":
expectedError=UserManagementErrorMessagesEnum.EMAIL_MAX_50_CHARS.getValue();
break;
case "SELECT_ROLE_ERROR":
expectedError=UserManagementErrorMessagesEnum.SELECT_ROLE_ERROR.getValue();
break;
case "SELECT_MAPPED_LOCATIONS_ERROR":
expectedError=UserManagementErrorMessagesEnum.SELECT_MAPPED_LOCATIONS_ERROR.getValue();
break;
case "FIRSTNAME_MAX_30_CHARS":
expectedError=UserManagementErrorMessagesEnum.FIRSTNAME_MAX_30_CHARS.getValue();
break;
case "LASTNAME_MAX_25_CHARS":
expectedError=UserManagementErrorMessagesEnum.LASTNAME_MAX_25_CHARS.getValue();
break;
case "INVALID_GROUPNAME_ERROR":
expectedError=UserManagementErrorMessagesEnum.INVALID_GROUPNAME_ERROR.getValue();
break;
case "GROUPNAME_NUMBER_SPECIAL_CHAR_ERROR":
expectedError=UserManagementErrorMessagesEnum.GROUPNAME_NUMBER_SPECIAL_CHAR_ERROR.getValue();
break;
case "GROUPNAME_MAX_30_CHARS":
expectedError=UserManagementErrorMessagesEnum.GROUPNAME_MAX_30_CHARS.getValue();
break;
default:
throw new Exception("This Expected Error in feature file is not present in the list of expected errors in switch case or Enum file");
}
|
As a Quality Assurance Manager, write step definition and page definition code using Java with Cucumber framework for the below given instruction.
###
instruction:
I get error message (.*) for groupname
###
response:
//step_function:
public void ThenIGetErrorMessageForGroupName(String expectedError) throws Exception
{
expectedError=commonPage.fetchUserManagementErrorMessageConstantsfromEnum(expectedError);
userManagementPage.validateErrorMessage("Group Name", expectedError);
}
//page_function:
public String fetchUserManagementErrorMessageConstantsfromEnum(String expectedError) throws Exception {
switch(expectedError) {
case "INVALID_FIRSTNAME_ERROR":
expectedError=UserManagementErrorMessagesEnum.INVALID_FIRSTNAME_ERROR.getValue();
break;
case "INVALID_LASSTNAME_ERROR":
expectedError=UserManagementErrorMessagesEnum.INVALID_LASSTNAME_ERROR.getValue();
break;
case "FIRSTNAME_NUMBER_SPECIAL_CHAR_ERROR":
expectedError=UserManagementErrorMessagesEnum.FIRSTNAME_NUMBER_SPECIAL_CHAR_ERROR.getValue();
break;
case "LASTNAME_NUMBER_SPECIAL_CHAR_ERROR":
expectedError=UserManagementErrorMessagesEnum.LASTNAME_NUMBER_SPECIAL_CHAR_ERROR.getValue();
break;
case "INVALID_MOBILE_ERROR":
expectedError=UserManagementErrorMessagesEnum.INVALID_MOBILE_ERROR.getValue();
break;
case "MOBILE_START_ZERO_ERROR":
expectedError=UserManagementErrorMessagesEnum.MOBILE_START_ZERO_ERROR.getValue();
break;
case "INVALID_EMAIL_ERROR":
expectedError=UserManagementErrorMessagesEnum.INVALID_EMAIL_ERROR.getValue();
break;
case "EMAIL_MAX_50_CHARS":
expectedError=UserManagementErrorMessagesEnum.EMAIL_MAX_50_CHARS.getValue();
break;
case "SELECT_ROLE_ERROR":
expectedError=UserManagementErrorMessagesEnum.SELECT_ROLE_ERROR.getValue();
break;
case "SELECT_MAPPED_LOCATIONS_ERROR":
expectedError=UserManagementErrorMessagesEnum.SELECT_MAPPED_LOCATIONS_ERROR.getValue();
break;
case "FIRSTNAME_MAX_30_CHARS":
expectedError=UserManagementErrorMessagesEnum.FIRSTNAME_MAX_30_CHARS.getValue();
break;
case "LASTNAME_MAX_25_CHARS":
expectedError=UserManagementErrorMessagesEnum.LASTNAME_MAX_25_CHARS.getValue();
break;
case "INVALID_GROUPNAME_ERROR":
expectedError=UserManagementErrorMessagesEnum.INVALID_GROUPNAME_ERROR.getValue();
break;
case "GROUPNAME_NUMBER_SPECIAL_CHAR_ERROR":
expectedError=UserManagementErrorMessagesEnum.GROUPNAME_NUMBER_SPECIAL_CHAR_ERROR.getValue();
break;
case "GROUPNAME_MAX_30_CHARS":
expectedError=UserManagementErrorMessagesEnum.GROUPNAME_MAX_30_CHARS.getValue();
break;
default:
throw new Exception("This Expected Error in feature file is not present in the list of expected errors in switch case or Enum file");
}
|
UserManagementSteps.java
|
I get error message (.*) for mapped locations
|
public void ThenIGetErrorMessageForMappedLocations(String expectedError) throws Exception
{
expectedError=commonPage.fetchUserManagementErrorMessageConstantsfromEnum(expectedError);
userManagementPage.validateErrorMessage("Mapped Location(s)", expectedError);
}
|
public String fetchUserManagementErrorMessageConstantsfromEnum(String expectedError) throws Exception {
switch(expectedError) {
case "INVALID_FIRSTNAME_ERROR":
expectedError=UserManagementErrorMessagesEnum.INVALID_FIRSTNAME_ERROR.getValue();
break;
case "INVALID_LASSTNAME_ERROR":
expectedError=UserManagementErrorMessagesEnum.INVALID_LASSTNAME_ERROR.getValue();
break;
case "FIRSTNAME_NUMBER_SPECIAL_CHAR_ERROR":
expectedError=UserManagementErrorMessagesEnum.FIRSTNAME_NUMBER_SPECIAL_CHAR_ERROR.getValue();
break;
case "LASTNAME_NUMBER_SPECIAL_CHAR_ERROR":
expectedError=UserManagementErrorMessagesEnum.LASTNAME_NUMBER_SPECIAL_CHAR_ERROR.getValue();
break;
case "INVALID_MOBILE_ERROR":
expectedError=UserManagementErrorMessagesEnum.INVALID_MOBILE_ERROR.getValue();
break;
case "MOBILE_START_ZERO_ERROR":
expectedError=UserManagementErrorMessagesEnum.MOBILE_START_ZERO_ERROR.getValue();
break;
case "INVALID_EMAIL_ERROR":
expectedError=UserManagementErrorMessagesEnum.INVALID_EMAIL_ERROR.getValue();
break;
case "EMAIL_MAX_50_CHARS":
expectedError=UserManagementErrorMessagesEnum.EMAIL_MAX_50_CHARS.getValue();
break;
case "SELECT_ROLE_ERROR":
expectedError=UserManagementErrorMessagesEnum.SELECT_ROLE_ERROR.getValue();
break;
case "SELECT_MAPPED_LOCATIONS_ERROR":
expectedError=UserManagementErrorMessagesEnum.SELECT_MAPPED_LOCATIONS_ERROR.getValue();
break;
case "FIRSTNAME_MAX_30_CHARS":
expectedError=UserManagementErrorMessagesEnum.FIRSTNAME_MAX_30_CHARS.getValue();
break;
case "LASTNAME_MAX_25_CHARS":
expectedError=UserManagementErrorMessagesEnum.LASTNAME_MAX_25_CHARS.getValue();
break;
case "INVALID_GROUPNAME_ERROR":
expectedError=UserManagementErrorMessagesEnum.INVALID_GROUPNAME_ERROR.getValue();
break;
case "GROUPNAME_NUMBER_SPECIAL_CHAR_ERROR":
expectedError=UserManagementErrorMessagesEnum.GROUPNAME_NUMBER_SPECIAL_CHAR_ERROR.getValue();
break;
case "GROUPNAME_MAX_30_CHARS":
expectedError=UserManagementErrorMessagesEnum.GROUPNAME_MAX_30_CHARS.getValue();
break;
default:
throw new Exception("This Expected Error in feature file is not present in the list of expected errors in switch case or Enum file");
}
|
@Then("I get error message (.*) for mapped locations$")
public void ThenIGetErrorMessageForMappedLocations(String expectedError) throws Exception
{
expectedError=commonPage.fetchUserManagementErrorMessageConstantsfromEnum(expectedError);
userManagementPage.validateErrorMessage("Mapped Location(s)", expectedError);
}
|
//step_function:
public void ThenIGetErrorMessageForMappedLocations(String expectedError) throws Exception
{
expectedError=commonPage.fetchUserManagementErrorMessageConstantsfromEnum(expectedError);
userManagementPage.validateErrorMessage("Mapped Location(s)", expectedError);
}
//page_function:
public String fetchUserManagementErrorMessageConstantsfromEnum(String expectedError) throws Exception {
switch(expectedError) {
case "INVALID_FIRSTNAME_ERROR":
expectedError=UserManagementErrorMessagesEnum.INVALID_FIRSTNAME_ERROR.getValue();
break;
case "INVALID_LASSTNAME_ERROR":
expectedError=UserManagementErrorMessagesEnum.INVALID_LASSTNAME_ERROR.getValue();
break;
case "FIRSTNAME_NUMBER_SPECIAL_CHAR_ERROR":
expectedError=UserManagementErrorMessagesEnum.FIRSTNAME_NUMBER_SPECIAL_CHAR_ERROR.getValue();
break;
case "LASTNAME_NUMBER_SPECIAL_CHAR_ERROR":
expectedError=UserManagementErrorMessagesEnum.LASTNAME_NUMBER_SPECIAL_CHAR_ERROR.getValue();
break;
case "INVALID_MOBILE_ERROR":
expectedError=UserManagementErrorMessagesEnum.INVALID_MOBILE_ERROR.getValue();
break;
case "MOBILE_START_ZERO_ERROR":
expectedError=UserManagementErrorMessagesEnum.MOBILE_START_ZERO_ERROR.getValue();
break;
case "INVALID_EMAIL_ERROR":
expectedError=UserManagementErrorMessagesEnum.INVALID_EMAIL_ERROR.getValue();
break;
case "EMAIL_MAX_50_CHARS":
expectedError=UserManagementErrorMessagesEnum.EMAIL_MAX_50_CHARS.getValue();
break;
case "SELECT_ROLE_ERROR":
expectedError=UserManagementErrorMessagesEnum.SELECT_ROLE_ERROR.getValue();
break;
case "SELECT_MAPPED_LOCATIONS_ERROR":
expectedError=UserManagementErrorMessagesEnum.SELECT_MAPPED_LOCATIONS_ERROR.getValue();
break;
case "FIRSTNAME_MAX_30_CHARS":
expectedError=UserManagementErrorMessagesEnum.FIRSTNAME_MAX_30_CHARS.getValue();
break;
case "LASTNAME_MAX_25_CHARS":
expectedError=UserManagementErrorMessagesEnum.LASTNAME_MAX_25_CHARS.getValue();
break;
case "INVALID_GROUPNAME_ERROR":
expectedError=UserManagementErrorMessagesEnum.INVALID_GROUPNAME_ERROR.getValue();
break;
case "GROUPNAME_NUMBER_SPECIAL_CHAR_ERROR":
expectedError=UserManagementErrorMessagesEnum.GROUPNAME_NUMBER_SPECIAL_CHAR_ERROR.getValue();
break;
case "GROUPNAME_MAX_30_CHARS":
expectedError=UserManagementErrorMessagesEnum.GROUPNAME_MAX_30_CHARS.getValue();
break;
default:
throw new Exception("This Expected Error in feature file is not present in the list of expected errors in switch case or Enum file");
}
|
As a Quality Assurance Manager, write step definition and page definition code using Java with Cucumber framework for the below given instruction.
###
instruction:
I get error message (.*) for mapped locations
###
response:
//step_function:
public void ThenIGetErrorMessageForMappedLocations(String expectedError) throws Exception
{
expectedError=commonPage.fetchUserManagementErrorMessageConstantsfromEnum(expectedError);
userManagementPage.validateErrorMessage("Mapped Location(s)", expectedError);
}
//page_function:
public String fetchUserManagementErrorMessageConstantsfromEnum(String expectedError) throws Exception {
switch(expectedError) {
case "INVALID_FIRSTNAME_ERROR":
expectedError=UserManagementErrorMessagesEnum.INVALID_FIRSTNAME_ERROR.getValue();
break;
case "INVALID_LASSTNAME_ERROR":
expectedError=UserManagementErrorMessagesEnum.INVALID_LASSTNAME_ERROR.getValue();
break;
case "FIRSTNAME_NUMBER_SPECIAL_CHAR_ERROR":
expectedError=UserManagementErrorMessagesEnum.FIRSTNAME_NUMBER_SPECIAL_CHAR_ERROR.getValue();
break;
case "LASTNAME_NUMBER_SPECIAL_CHAR_ERROR":
expectedError=UserManagementErrorMessagesEnum.LASTNAME_NUMBER_SPECIAL_CHAR_ERROR.getValue();
break;
case "INVALID_MOBILE_ERROR":
expectedError=UserManagementErrorMessagesEnum.INVALID_MOBILE_ERROR.getValue();
break;
case "MOBILE_START_ZERO_ERROR":
expectedError=UserManagementErrorMessagesEnum.MOBILE_START_ZERO_ERROR.getValue();
break;
case "INVALID_EMAIL_ERROR":
expectedError=UserManagementErrorMessagesEnum.INVALID_EMAIL_ERROR.getValue();
break;
case "EMAIL_MAX_50_CHARS":
expectedError=UserManagementErrorMessagesEnum.EMAIL_MAX_50_CHARS.getValue();
break;
case "SELECT_ROLE_ERROR":
expectedError=UserManagementErrorMessagesEnum.SELECT_ROLE_ERROR.getValue();
break;
case "SELECT_MAPPED_LOCATIONS_ERROR":
expectedError=UserManagementErrorMessagesEnum.SELECT_MAPPED_LOCATIONS_ERROR.getValue();
break;
case "FIRSTNAME_MAX_30_CHARS":
expectedError=UserManagementErrorMessagesEnum.FIRSTNAME_MAX_30_CHARS.getValue();
break;
case "LASTNAME_MAX_25_CHARS":
expectedError=UserManagementErrorMessagesEnum.LASTNAME_MAX_25_CHARS.getValue();
break;
case "INVALID_GROUPNAME_ERROR":
expectedError=UserManagementErrorMessagesEnum.INVALID_GROUPNAME_ERROR.getValue();
break;
case "GROUPNAME_NUMBER_SPECIAL_CHAR_ERROR":
expectedError=UserManagementErrorMessagesEnum.GROUPNAME_NUMBER_SPECIAL_CHAR_ERROR.getValue();
break;
case "GROUPNAME_MAX_30_CHARS":
expectedError=UserManagementErrorMessagesEnum.GROUPNAME_MAX_30_CHARS.getValue();
break;
default:
throw new Exception("This Expected Error in feature file is not present in the list of expected errors in switch case or Enum file");
}
|
UserManagementSteps.java
|
I enter group name (.*) to validate error messages
|
public void GivenIEnterGroupNameToValidateErrorMessages(String groupName)
{
userManagementPage.enterGroupName(groupName);
}
|
public void enterGroupName(String groupname) {
groupName.clear();
typeInto(groupName,groupname);
}
|
@Given("I enter group name (.*) to validate error messages$")
public void GivenIEnterGroupNameToValidateErrorMessages(String groupName)
{
userManagementPage.enterGroupName(groupName);
}
|
//step_function:
public void GivenIEnterGroupNameToValidateErrorMessages(String groupName)
{
userManagementPage.enterGroupName(groupName);
}
//page_function:
public void enterGroupName(String groupname) {
groupName.clear();
typeInto(groupName,groupname);
}
|
As a Quality Assurance Manager, write step definition and page definition code using Java with Cucumber framework for the below given instruction.
###
instruction:
I enter group name (.*) to validate error messages
###
response:
//step_function:
public void GivenIEnterGroupNameToValidateErrorMessages(String groupName)
{
userManagementPage.enterGroupName(groupName);
}
//page_function:
public void enterGroupName(String groupname) {
groupName.clear();
typeInto(groupName,groupname);
}
|
UserManagementSteps.java
|
I get error message (.*) for duplicate user
|
public void GivenIEnterGroupNameForDuplicateUser(String expectedError) throws Exception
{
userManagementPage.validateDuplicateUser();
}
|
public void validateDuplicateUser() {
Assert.assertTrue(userAlreadyExists.isVisible());
}
|
@Given("I get error message (.*) for duplicate user$")
public void GivenIEnterGroupNameForDuplicateUser(String expectedError) throws Exception
{
userManagementPage.validateDuplicateUser();
}
|
//step_function:
public void GivenIEnterGroupNameForDuplicateUser(String expectedError) throws Exception
{
userManagementPage.validateDuplicateUser();
}
//page_function:
public void validateDuplicateUser() {
Assert.assertTrue(userAlreadyExists.isVisible());
}
|
As a Quality Assurance Manager, write step definition and page definition code using Java with Cucumber framework for the below given instruction.
###
instruction:
I get error message (.*) for duplicate user
###
response:
//step_function:
public void GivenIEnterGroupNameForDuplicateUser(String expectedError) throws Exception
{
userManagementPage.validateDuplicateUser();
}
//page_function:
public void validateDuplicateUser() {
Assert.assertTrue(userAlreadyExists.isVisible());
}
|
UserManagementSteps.java
|
After fetching data from data file)? I enter first name (.*), last name, phone number, email id
|
public void ThenIEnterFirstNameLastNamePhoneNumberEmailId(String file, String value) throws FileNotFoundException, IOException
{
if((file!=null)&&(file.contains("data file")))
value=commonPage.fetchDataFromDataProperties(value);
Random objGenerator = new Random();
int randomNumber = objGenerator.nextInt(99);
userManagementPage.enterFirstName(value+generatedString);
userManagementPage.enterLastName(value+generatedString);
userManagementPage.enterEmail(value+generatedString+"
|
public String fetchDataFromDataProperties(String key) throws FileNotFoundException, IOException {
properties=new Properties();
properties.load(new FileInputStream(new File("./data.properties")));
String value=properties.getProperty(key);
return value;
}
|
@Then("^(After fetching data from data file)? I enter first name (.*), last name, phone number, email id$")
public void ThenIEnterFirstNameLastNamePhoneNumberEmailId(String file, String value) throws FileNotFoundException, IOException
{
if((file!=null)&&(file.contains("data file")))
value=commonPage.fetchDataFromDataProperties(value);
Random objGenerator = new Random();
int randomNumber = objGenerator.nextInt(99);
userManagementPage.enterFirstName(value+generatedString);
userManagementPage.enterLastName(value+generatedString);
userManagementPage.enterEmail(value+generatedString+"
|
//step_function:
public void ThenIEnterFirstNameLastNamePhoneNumberEmailId(String file, String value) throws FileNotFoundException, IOException
{
if((file!=null)&&(file.contains("data file")))
value=commonPage.fetchDataFromDataProperties(value);
Random objGenerator = new Random();
int randomNumber = objGenerator.nextInt(99);
userManagementPage.enterFirstName(value+generatedString);
userManagementPage.enterLastName(value+generatedString);
userManagementPage.enterEmail(value+generatedString+"
//page_function:
public String fetchDataFromDataProperties(String key) throws FileNotFoundException, IOException {
properties=new Properties();
properties.load(new FileInputStream(new File("./data.properties")));
String value=properties.getProperty(key);
return value;
}
|
As a Quality Assurance Manager, write step definition and page definition code using Java with Cucumber framework for the below given instruction.
###
instruction:
After fetching data from data file)? I enter first name (.*), last name, phone number, email id
###
response:
//step_function:
public void ThenIEnterFirstNameLastNamePhoneNumberEmailId(String file, String value) throws FileNotFoundException, IOException
{
if((file!=null)&&(file.contains("data file")))
value=commonPage.fetchDataFromDataProperties(value);
Random objGenerator = new Random();
int randomNumber = objGenerator.nextInt(99);
userManagementPage.enterFirstName(value+generatedString);
userManagementPage.enterLastName(value+generatedString);
userManagementPage.enterEmail(value+generatedString+"
//page_function:
public String fetchDataFromDataProperties(String key) throws FileNotFoundException, IOException {
properties=new Properties();
properties.load(new FileInputStream(new File("./data.properties")));
String value=properties.getProperty(key);
return value;
}
|
UserManagementSteps.java
|
After fetching data from data file)? I enter all mandatory fields first name (.*), last name, phone number, email id, role and mapped location (.*) from the list
|
public void GivenAfterFetchingDataFromDataFileIEnterAllMandatoryFieldsFirstNameLastNamePhoneNumberEmailIdRoleAndMappedLocationNikeFromTheList(String file, String value, String location) throws FileNotFoundException, IOException
{
if((file!=null)&&(file.contains("data file"))) {
value=commonPage.fetchDataFromDataProperties(value);
location=commonPage.fetchDataFromDataProperties(location);
}
userManagementPage.enterFirstName(value+generatedString);
userManagementPage.enterLastName(value+generatedString);
userManagementPage.enterEmail(value+generatedString+"
|
public String fetchDataFromDataProperties(String key) throws FileNotFoundException, IOException {
properties=new Properties();
properties.load(new FileInputStream(new File("./data.properties")));
String value=properties.getProperty(key);
return value;
}
|
@Given("^(After fetching data from data file)? I enter all mandatory fields first name (.*), last name, phone number, email id, role and mapped location (.*) from the list$")
public void GivenAfterFetchingDataFromDataFileIEnterAllMandatoryFieldsFirstNameLastNamePhoneNumberEmailIdRoleAndMappedLocationNikeFromTheList(String file, String value, String location) throws FileNotFoundException, IOException
{
if((file!=null)&&(file.contains("data file"))) {
value=commonPage.fetchDataFromDataProperties(value);
location=commonPage.fetchDataFromDataProperties(location);
}
userManagementPage.enterFirstName(value+generatedString);
userManagementPage.enterLastName(value+generatedString);
userManagementPage.enterEmail(value+generatedString+"
|
//step_function:
public void GivenAfterFetchingDataFromDataFileIEnterAllMandatoryFieldsFirstNameLastNamePhoneNumberEmailIdRoleAndMappedLocationNikeFromTheList(String file, String value, String location) throws FileNotFoundException, IOException
{
if((file!=null)&&(file.contains("data file"))) {
value=commonPage.fetchDataFromDataProperties(value);
location=commonPage.fetchDataFromDataProperties(location);
}
userManagementPage.enterFirstName(value+generatedString);
userManagementPage.enterLastName(value+generatedString);
userManagementPage.enterEmail(value+generatedString+"
//page_function:
public String fetchDataFromDataProperties(String key) throws FileNotFoundException, IOException {
properties=new Properties();
properties.load(new FileInputStream(new File("./data.properties")));
String value=properties.getProperty(key);
return value;
}
|
As a Quality Assurance Manager, write step definition and page definition code using Java with Cucumber framework for the below given instruction.
###
instruction:
After fetching data from data file)? I enter all mandatory fields first name (.*), last name, phone number, email id, role and mapped location (.*) from the list
###
response:
//step_function:
public void GivenAfterFetchingDataFromDataFileIEnterAllMandatoryFieldsFirstNameLastNamePhoneNumberEmailIdRoleAndMappedLocationNikeFromTheList(String file, String value, String location) throws FileNotFoundException, IOException
{
if((file!=null)&&(file.contains("data file"))) {
value=commonPage.fetchDataFromDataProperties(value);
location=commonPage.fetchDataFromDataProperties(location);
}
userManagementPage.enterFirstName(value+generatedString);
userManagementPage.enterLastName(value+generatedString);
userManagementPage.enterEmail(value+generatedString+"
//page_function:
public String fetchDataFromDataProperties(String key) throws FileNotFoundException, IOException {
properties=new Properties();
properties.load(new FileInputStream(new File("./data.properties")));
String value=properties.getProperty(key);
return value;
}
|
UserManagementSteps.java
|
I enter firstname (.*), lastname (.*) mobile number (.*) and email (.*
|
public void ThenIEnterFirstnameAutomationLastnameTestOneMobileNumberAndEmailBbautomationtestYopmail_Com(String fname, String lname, String mobileNum, String email)
{
userManagementPage.enterFirstName(fname);
userManagementPage.enterLastName(lname);
userManagementPage.enterEmail(email);
userManagementPage.enterMobileNumber(mobileNum);
}
|
public void enterFirstName(String firstname) {
firstName.clear();
firstName.sendKeys(firstname);
}
|
@Then("I enter firstname (.*), lastname (.*) mobile number (.*) and email (.*)$")
public void ThenIEnterFirstnameAutomationLastnameTestOneMobileNumberAndEmailBbautomationtestYopmail_Com(String fname, String lname, String mobileNum, String email)
{
userManagementPage.enterFirstName(fname);
userManagementPage.enterLastName(lname);
userManagementPage.enterEmail(email);
userManagementPage.enterMobileNumber(mobileNum);
}
|
//step_function:
public void ThenIEnterFirstnameAutomationLastnameTestOneMobileNumberAndEmailBbautomationtestYopmail_Com(String fname, String lname, String mobileNum, String email)
{
userManagementPage.enterFirstName(fname);
userManagementPage.enterLastName(lname);
userManagementPage.enterEmail(email);
userManagementPage.enterMobileNumber(mobileNum);
}
//page_function:
public void enterFirstName(String firstname) {
firstName.clear();
firstName.sendKeys(firstname);
}
|
As a Quality Assurance Manager, write step definition and page definition code using Java with Cucumber framework for the below given instruction.
###
instruction:
I enter firstname (.*), lastname (.*) mobile number (.*) and email (.*
###
response:
//step_function:
public void ThenIEnterFirstnameAutomationLastnameTestOneMobileNumberAndEmailBbautomationtestYopmail_Com(String fname, String lname, String mobileNum, String email)
{
userManagementPage.enterFirstName(fname);
userManagementPage.enterLastName(lname);
userManagementPage.enterEmail(email);
userManagementPage.enterMobileNumber(mobileNum);
}
//page_function:
public void enterFirstName(String firstname) {
firstName.clear();
firstName.sendKeys(firstname);
}
|
UserManagementSteps.java
|
I click on all location dropdown
|
public void ThenIClickOnAllLocationDropdown()
{
userManagementPage.clickOnAllLocations();
}
|
public void clickOnAllLocations() {
allLocations.click();
}
|
@Then("I click on all location dropdown")
public void ThenIClickOnAllLocationDropdown()
{
userManagementPage.clickOnAllLocations();
}
|
//step_function:
public void ThenIClickOnAllLocationDropdown()
{
userManagementPage.clickOnAllLocations();
}
//page_function:
public void clickOnAllLocations() {
allLocations.click();
}
|
As a Quality Assurance Manager, write step definition and page definition code using Java with Cucumber framework for the below given instruction.
###
instruction:
I click on all location dropdown
###
response:
//step_function:
public void ThenIClickOnAllLocationDropdown()
{
userManagementPage.clickOnAllLocations();
}
//page_function:
public void clickOnAllLocations() {
allLocations.click();
}
|
UserManagementSteps.java
|
I select the location or group number (.*) from the list
|
public void ThenISelectTheLocationOrGroupNumberFromTheList(int locationNum)
{
userManagementPage.selectLocationFromThedropdown(locationNum);
}
|
public void selectLocationFromThedropdown(int locationNum) {
CommonPage commonPage = new CommonPage();
commonPage.waitForSometime(5*1000);
List<WebElement> options=getDriver().findElements(By.xpath("//li[@role='menuitem']"));
options.get(locationNum).click();
Actions action = new Actions(getDriver());
action.sendKeys(Keys.ESCAPE).build().perform();
}
|
@Then("I select the location or group number (.*) from the list")
public void ThenISelectTheLocationOrGroupNumberFromTheList(int locationNum)
{
userManagementPage.selectLocationFromThedropdown(locationNum);
}
|
//step_function:
public void ThenISelectTheLocationOrGroupNumberFromTheList(int locationNum)
{
userManagementPage.selectLocationFromThedropdown(locationNum);
}
//page_function:
public void selectLocationFromThedropdown(int locationNum) {
CommonPage commonPage = new CommonPage();
commonPage.waitForSometime(5*1000);
List<WebElement> options=getDriver().findElements(By.xpath("//li[@role='menuitem']"));
options.get(locationNum).click();
Actions action = new Actions(getDriver());
action.sendKeys(Keys.ESCAPE).build().perform();
}
|
As a Quality Assurance Manager, write step definition and page definition code using Java with Cucumber framework for the below given instruction.
###
instruction:
I select the location or group number (.*) from the list
###
response:
//step_function:
public void ThenISelectTheLocationOrGroupNumberFromTheList(int locationNum)
{
userManagementPage.selectLocationFromThedropdown(locationNum);
}
//page_function:
public void selectLocationFromThedropdown(int locationNum) {
CommonPage commonPage = new CommonPage();
commonPage.waitForSometime(5*1000);
List<WebElement> options=getDriver().findElements(By.xpath("//li[@role='menuitem']"));
options.get(locationNum).click();
Actions action = new Actions(getDriver());
action.sendKeys(Keys.ESCAPE).build().perform();
}
|
UserManagementSteps.java
|
validate number of users asign to selected location or group
|
public void ThenValidateNumberOfUsersAsignToSelectedLocationOrGroup()
{
System.out.println(userManagementPage.getNumOfUsers());
}
}
|
public int getNumOfUsers() {
String users=numOfUsers.getText();
users=users.substring(users.length()-2, users.length());
int NumberOfUsers=Integer.parseInt(users);
return NumberOfUsers;
}
|
@Then("validate number of users asign to selected location or group")
public void ThenValidateNumberOfUsersAsignToSelectedLocationOrGroup()
{
System.out.println(userManagementPage.getNumOfUsers());
}
}
|
//step_function:
public void ThenValidateNumberOfUsersAsignToSelectedLocationOrGroup()
{
System.out.println(userManagementPage.getNumOfUsers());
}
}
//page_function:
public int getNumOfUsers() {
String users=numOfUsers.getText();
users=users.substring(users.length()-2, users.length());
int NumberOfUsers=Integer.parseInt(users);
return NumberOfUsers;
}
|
As a Quality Assurance Manager, write step definition and page definition code using Java with Cucumber framework for the below given instruction.
###
instruction:
validate number of users asign to selected location or group
###
response:
//step_function:
public void ThenValidateNumberOfUsersAsignToSelectedLocationOrGroup()
{
System.out.println(userManagementPage.getNumOfUsers());
}
}
//page_function:
public int getNumOfUsers() {
String users=numOfUsers.getText();
users=users.substring(users.length()-2, users.length());
int NumberOfUsers=Integer.parseInt(users);
return NumberOfUsers;
}
|
CommonSteps.java
|
After fetching data from data file )?I fetch OTP of mobile number (.*
|
public void fetchOTPFromSms(String file, String mobileNumber) throws FileNotFoundException, IOException {
String[] mobileAccountAndAuthToken=new String[2];
String account_id="";
String authToken="";
if((file!=null) && (file.contains("data file"))) {
mobileAccountAndAuthToken=commonPage.chooseAccountIDAuthToken(mobileNumber);
account_id=mobileAccountAndAuthToken[0];
authToken=mobileAccountAndAuthToken[1];
mobileNumber=commonPage.fetchDataFromDataProperties(mobileNumber);
}
otp=commonPage.fetchOtpFromTwilio(account_id,authToken,mobileNumber);
}
|
no page definition for the given scenario
|
@When("^(After fetching data from data file )?I fetch OTP of mobile number (.*)$")
public void fetchOTPFromSms(String file, String mobileNumber) throws FileNotFoundException, IOException {
String[] mobileAccountAndAuthToken=new String[2];
String account_id="";
String authToken="";
if((file!=null) && (file.contains("data file"))) {
mobileAccountAndAuthToken=commonPage.chooseAccountIDAuthToken(mobileNumber);
account_id=mobileAccountAndAuthToken[0];
authToken=mobileAccountAndAuthToken[1];
mobileNumber=commonPage.fetchDataFromDataProperties(mobileNumber);
}
otp=commonPage.fetchOtpFromTwilio(account_id,authToken,mobileNumber);
}
|
//step_function:
public void fetchOTPFromSms(String file, String mobileNumber) throws FileNotFoundException, IOException {
String[] mobileAccountAndAuthToken=new String[2];
String account_id="";
String authToken="";
if((file!=null) && (file.contains("data file"))) {
mobileAccountAndAuthToken=commonPage.chooseAccountIDAuthToken(mobileNumber);
account_id=mobileAccountAndAuthToken[0];
authToken=mobileAccountAndAuthToken[1];
mobileNumber=commonPage.fetchDataFromDataProperties(mobileNumber);
}
otp=commonPage.fetchOtpFromTwilio(account_id,authToken,mobileNumber);
}
//page_function:
no page definition for the given scenario
|
As a Quality Assurance Manager, write step definition and page definition code using Java with Cucumber framework for the below given instruction.
###
instruction:
After fetching data from data file )?I fetch OTP of mobile number (.*
###
response:
//step_function:
public void fetchOTPFromSms(String file, String mobileNumber) throws FileNotFoundException, IOException {
String[] mobileAccountAndAuthToken=new String[2];
String account_id="";
String authToken="";
if((file!=null) && (file.contains("data file"))) {
mobileAccountAndAuthToken=commonPage.chooseAccountIDAuthToken(mobileNumber);
account_id=mobileAccountAndAuthToken[0];
authToken=mobileAccountAndAuthToken[1];
mobileNumber=commonPage.fetchDataFromDataProperties(mobileNumber);
}
otp=commonPage.fetchOtpFromTwilio(account_id,authToken,mobileNumber);
}
//page_function:
no page definition for the given scenario
|
CommonSteps.java
|
I perform accessibility testing
|
public void accessibility(){
JSONObject responseJson= new AXE.Builder(commonPage.getDriver(), scriptURL).analyze();
JSONArray violations = responseJson.getJSONArray("violations");
if (violations.length()==0)
System.out.println("No Errors");
else
AXE.writeResults("accessability",responseJson);
System.out.println(AXE.report(violations));
}
}
|
no page definition for the given scenario
|
@And("^I perform accessibility testing$")
public void accessibility(){
JSONObject responseJson= new AXE.Builder(commonPage.getDriver(), scriptURL).analyze();
JSONArray violations = responseJson.getJSONArray("violations");
if (violations.length()==0)
System.out.println("No Errors");
else
AXE.writeResults("accessability",responseJson);
System.out.println(AXE.report(violations));
}
}
|
//step_function:
public void accessibility(){
JSONObject responseJson= new AXE.Builder(commonPage.getDriver(), scriptURL).analyze();
JSONArray violations = responseJson.getJSONArray("violations");
if (violations.length()==0)
System.out.println("No Errors");
else
AXE.writeResults("accessability",responseJson);
System.out.println(AXE.report(violations));
}
}
//page_function:
no page definition for the given scenario
|
As a Quality Assurance Manager, write step definition and page definition code using Java with Cucumber framework for the below given instruction.
###
instruction:
I perform accessibility testing
###
response:
//step_function:
public void accessibility(){
JSONObject responseJson= new AXE.Builder(commonPage.getDriver(), scriptURL).analyze();
JSONArray violations = responseJson.getJSONArray("violations");
if (violations.length()==0)
System.out.println("No Errors");
else
AXE.writeResults("accessability",responseJson);
System.out.println(AXE.report(violations));
}
}
//page_function:
no page definition for the given scenario
|
adminLoginSteps.java
|
I am an Admin
|
public void userIsAdmin() {
}
|
no page definition for the given scenario
|
@Given("^I am an Admin$")
public void userIsAdmin() {
}
|
//step_function:
public void userIsAdmin() {
}
//page_function:
no page definition for the given scenario
|
As a Quality Assurance Manager, write step definition and page definition code using Java with Cucumber framework for the below given instruction.
###
instruction:
I am an Admin
###
response:
//step_function:
public void userIsAdmin() {
}
//page_function:
no page definition for the given scenario
|
adminLoginSteps.java
|
I am on Admin Login screen
|
public void onAdminLoginPage() {
adminLoginPage.open();
}
|
no page definition for the given scenario
|
@Given("^I am on Admin Login screen$")
public void onAdminLoginPage() {
adminLoginPage.open();
}
|
//step_function:
public void onAdminLoginPage() {
adminLoginPage.open();
}
//page_function:
no page definition for the given scenario
|
As a Quality Assurance Manager, write step definition and page definition code using Java with Cucumber framework for the below given instruction.
###
instruction:
I am on Admin Login screen
###
response:
//step_function:
public void onAdminLoginPage() {
adminLoginPage.open();
}
//page_function:
no page definition for the given scenario
|
APISteps.java
|
I call (.*) API with (.*) http request( with params)?
|
public void hitRequest(String apiName, String method, String hasParam)throws InterruptedException, FileNotFoundException, IOException {
if((method.equalsIgnoreCase("POST"))&&(hasParam==null))
response =httpRequest.log().all().when().request(Method.POST);
else if((method.equalsIgnoreCase("POST"))&&(hasParam.contains("param"))) {
httpRequest = httpRequest.queryParams(paramsMap);
response =httpRequest.log().all().when().request(Method.POST);
}
else if(((method.equalsIgnoreCase("GET"))&&(hasParam==null))) {
httpRequest = RestAssured.given().headers(headersMap);
response=httpRequest.log().all().when().request(Method.GET);
}else if(((method.equalsIgnoreCase("GET"))&&(hasParam.contains("param")))) {
httpRequest = RestAssured.given().headers(headersMap).params(paramsMap);
response=httpRequest.log().all().when().request(Method.GET);
System.out.println("Check GET request");
}else if((method.equalsIgnoreCase("PUT"))&&(hasParam==null))
response=httpRequest.log().all().when().request(Method.PUT);
else if((method.equalsIgnoreCase("PUT"))&&(hasParam.contains("param"))) {
httpRequest = httpRequest.queryParams(paramsMap);
response=httpRequest.log().all().when().request(Method.PUT);
}
else
response=null;
}
|
no page definition for the given scenario
|
@When("^I call (.*) API with (.*) http request( with params)?$")
public void hitRequest(String apiName, String method, String hasParam)throws InterruptedException, FileNotFoundException, IOException {
if((method.equalsIgnoreCase("POST"))&&(hasParam==null))
response =httpRequest.log().all().when().request(Method.POST);
else if((method.equalsIgnoreCase("POST"))&&(hasParam.contains("param"))) {
httpRequest = httpRequest.queryParams(paramsMap);
response =httpRequest.log().all().when().request(Method.POST);
}
else if(((method.equalsIgnoreCase("GET"))&&(hasParam==null))) {
httpRequest = RestAssured.given().headers(headersMap);
response=httpRequest.log().all().when().request(Method.GET);
}else if(((method.equalsIgnoreCase("GET"))&&(hasParam.contains("param")))) {
httpRequest = RestAssured.given().headers(headersMap).params(paramsMap);
response=httpRequest.log().all().when().request(Method.GET);
System.out.println("Check GET request");
}else if((method.equalsIgnoreCase("PUT"))&&(hasParam==null))
response=httpRequest.log().all().when().request(Method.PUT);
else if((method.equalsIgnoreCase("PUT"))&&(hasParam.contains("param"))) {
httpRequest = httpRequest.queryParams(paramsMap);
response=httpRequest.log().all().when().request(Method.PUT);
}
else
response=null;
}
|
//step_function:
public void hitRequest(String apiName, String method, String hasParam)throws InterruptedException, FileNotFoundException, IOException {
if((method.equalsIgnoreCase("POST"))&&(hasParam==null))
response =httpRequest.log().all().when().request(Method.POST);
else if((method.equalsIgnoreCase("POST"))&&(hasParam.contains("param"))) {
httpRequest = httpRequest.queryParams(paramsMap);
response =httpRequest.log().all().when().request(Method.POST);
}
else if(((method.equalsIgnoreCase("GET"))&&(hasParam==null))) {
httpRequest = RestAssured.given().headers(headersMap);
response=httpRequest.log().all().when().request(Method.GET);
}else if(((method.equalsIgnoreCase("GET"))&&(hasParam.contains("param")))) {
httpRequest = RestAssured.given().headers(headersMap).params(paramsMap);
response=httpRequest.log().all().when().request(Method.GET);
System.out.println("Check GET request");
}else if((method.equalsIgnoreCase("PUT"))&&(hasParam==null))
response=httpRequest.log().all().when().request(Method.PUT);
else if((method.equalsIgnoreCase("PUT"))&&(hasParam.contains("param"))) {
httpRequest = httpRequest.queryParams(paramsMap);
response=httpRequest.log().all().when().request(Method.PUT);
}
else
response=null;
}
//page_function:
no page definition for the given scenario
|
As a Quality Assurance Manager, write step definition and page definition code using Java with Cucumber framework for the below given instruction.
###
instruction:
I call (.*) API with (.*) http request( with params)?
###
response:
//step_function:
public void hitRequest(String apiName, String method, String hasParam)throws InterruptedException, FileNotFoundException, IOException {
if((method.equalsIgnoreCase("POST"))&&(hasParam==null))
response =httpRequest.log().all().when().request(Method.POST);
else if((method.equalsIgnoreCase("POST"))&&(hasParam.contains("param"))) {
httpRequest = httpRequest.queryParams(paramsMap);
response =httpRequest.log().all().when().request(Method.POST);
}
else if(((method.equalsIgnoreCase("GET"))&&(hasParam==null))) {
httpRequest = RestAssured.given().headers(headersMap);
response=httpRequest.log().all().when().request(Method.GET);
}else if(((method.equalsIgnoreCase("GET"))&&(hasParam.contains("param")))) {
httpRequest = RestAssured.given().headers(headersMap).params(paramsMap);
response=httpRequest.log().all().when().request(Method.GET);
System.out.println("Check GET request");
}else if((method.equalsIgnoreCase("PUT"))&&(hasParam==null))
response=httpRequest.log().all().when().request(Method.PUT);
else if((method.equalsIgnoreCase("PUT"))&&(hasParam.contains("param"))) {
httpRequest = httpRequest.queryParams(paramsMap);
response=httpRequest.log().all().when().request(Method.PUT);
}
else
response=null;
}
//page_function:
no page definition for the given scenario
|
APISteps.java
|
I got status code (.*) from response of (.*) API
|
public void validateStatusCode(int expectedStatusCode, String apiName) {
int statusCode = response.getStatusCode();
String statusLine=response.getBody().asString();
System.out.println("Response body is: "+statusLine);
String actualStatusLine=statusLine.toLowerCase();
if(!(actualStatusLine.contains("no data found"))) {
assertEquals(expectedStatusCode, statusCode);
}else {
System.out.println("Data Not Found for this API call");
}
System.out.println("Status code is: "+statusCode);
}
|
no page definition for the given scenario
|
@Then("^I got status code (.*) from response of (.*) API$")
public void validateStatusCode(int expectedStatusCode, String apiName) {
int statusCode = response.getStatusCode();
String statusLine=response.getBody().asString();
System.out.println("Response body is: "+statusLine);
String actualStatusLine=statusLine.toLowerCase();
if(!(actualStatusLine.contains("no data found"))) {
assertEquals(expectedStatusCode, statusCode);
}else {
System.out.println("Data Not Found for this API call");
}
System.out.println("Status code is: "+statusCode);
}
|
//step_function:
public void validateStatusCode(int expectedStatusCode, String apiName) {
int statusCode = response.getStatusCode();
String statusLine=response.getBody().asString();
System.out.println("Response body is: "+statusLine);
String actualStatusLine=statusLine.toLowerCase();
if(!(actualStatusLine.contains("no data found"))) {
assertEquals(expectedStatusCode, statusCode);
}else {
System.out.println("Data Not Found for this API call");
}
System.out.println("Status code is: "+statusCode);
}
//page_function:
no page definition for the given scenario
|
As a Quality Assurance Manager, write step definition and page definition code using Java with Cucumber framework for the below given instruction.
###
instruction:
I got status code (.*) from response of (.*) API
###
response:
//step_function:
public void validateStatusCode(int expectedStatusCode, String apiName) {
int statusCode = response.getStatusCode();
String statusLine=response.getBody().asString();
System.out.println("Response body is: "+statusLine);
String actualStatusLine=statusLine.toLowerCase();
if(!(actualStatusLine.contains("no data found"))) {
assertEquals(expectedStatusCode, statusCode);
}else {
System.out.println("Data Not Found for this API call");
}
System.out.println("Status code is: "+statusCode);
}
//page_function:
no page definition for the given scenario
|
APISteps.java
|
I verify size of (.*) and absence of neg values in response is (\\d+
|
public void verifySizeOfResponse(String jsonKey, int expectedSize) {
int responseSize=0;
String values[]=null;
if(jsonKey.contains("powerGeneration"))
{
values=response.body().jsonPath().get(jsonKey).toString().split(",");
responseSize=values.length;
}
// if(expectedSize!=28)
// assertEquals(expectedSize,responseSize);
// else
assertTrue(responseSize>=expectedSize);
String a=null;
System.out.print("Values in trend api: ");
for(int i=0;i<values.length;i++) {
a=values[i].trim();
System.out.print(a+", ");
assertFalse(a.contains("=-"));
}
System.out.println();
}
|
no page definition for the given scenario
|
@Then("^I verify size of (.*) and absence of neg values in response is (\\d+)$")
public void verifySizeOfResponse(String jsonKey, int expectedSize) {
int responseSize=0;
String values[]=null;
if(jsonKey.contains("powerGeneration"))
{
values=response.body().jsonPath().get(jsonKey).toString().split(",");
responseSize=values.length;
}
// if(expectedSize!=28)
// assertEquals(expectedSize,responseSize);
// else
assertTrue(responseSize>=expectedSize);
String a=null;
System.out.print("Values in trend api: ");
for(int i=0;i<values.length;i++) {
a=values[i].trim();
System.out.print(a+", ");
assertFalse(a.contains("=-"));
}
System.out.println();
}
|
//step_function:
public void verifySizeOfResponse(String jsonKey, int expectedSize) {
int responseSize=0;
String values[]=null;
if(jsonKey.contains("powerGeneration"))
{
values=response.body().jsonPath().get(jsonKey).toString().split(",");
responseSize=values.length;
}
// if(expectedSize!=28)
// assertEquals(expectedSize,responseSize);
// else
assertTrue(responseSize>=expectedSize);
String a=null;
System.out.print("Values in trend api: ");
for(int i=0;i<values.length;i++) {
a=values[i].trim();
System.out.print(a+", ");
assertFalse(a.contains("=-"));
}
System.out.println();
}
//page_function:
no page definition for the given scenario
|
As a Quality Assurance Manager, write step definition and page definition code using Java with Cucumber framework for the below given instruction.
###
instruction:
I verify size of (.*) and absence of neg values in response is (\\d+
###
response:
//step_function:
public void verifySizeOfResponse(String jsonKey, int expectedSize) {
int responseSize=0;
String values[]=null;
if(jsonKey.contains("powerGeneration"))
{
values=response.body().jsonPath().get(jsonKey).toString().split(",");
responseSize=values.length;
}
// if(expectedSize!=28)
// assertEquals(expectedSize,responseSize);
// else
assertTrue(responseSize>=expectedSize);
String a=null;
System.out.print("Values in trend api: ");
for(int i=0;i<values.length;i++) {
a=values[i].trim();
System.out.print(a+", ");
assertFalse(a.contains("=-"));
}
System.out.println();
}
//page_function:
no page definition for the given scenario
|
APISteps.java
|
I save (.*) value from response of (.*) API
|
public String saveValueOfKeyFromResponse(String key, String apiName) {
String value=getJsonPath(response,key);
if(apiName.contains("session")) {
session=value;
System.out.println("Session value is: "+value);
}else if(apiName.contains("authkey")) {
authKey=value;
System.out.println("AuthKey value is: "+value);
}else if(apiName.contains("history")) {
docId=value;
System.out.println("doc id value is: "+docId);
}
return value;
}
|
no page definition for the given scenario
|
@When("^I save (.*) value from response of (.*) API$")
public String saveValueOfKeyFromResponse(String key, String apiName) {
String value=getJsonPath(response,key);
if(apiName.contains("session")) {
session=value;
System.out.println("Session value is: "+value);
}else if(apiName.contains("authkey")) {
authKey=value;
System.out.println("AuthKey value is: "+value);
}else if(apiName.contains("history")) {
docId=value;
System.out.println("doc id value is: "+docId);
}
return value;
}
|
//step_function:
public String saveValueOfKeyFromResponse(String key, String apiName) {
String value=getJsonPath(response,key);
if(apiName.contains("session")) {
session=value;
System.out.println("Session value is: "+value);
}else if(apiName.contains("authkey")) {
authKey=value;
System.out.println("AuthKey value is: "+value);
}else if(apiName.contains("history")) {
docId=value;
System.out.println("doc id value is: "+docId);
}
return value;
}
//page_function:
no page definition for the given scenario
|
As a Quality Assurance Manager, write step definition and page definition code using Java with Cucumber framework for the below given instruction.
###
instruction:
I save (.*) value from response of (.*) API
###
response:
//step_function:
public String saveValueOfKeyFromResponse(String key, String apiName) {
String value=getJsonPath(response,key);
if(apiName.contains("session")) {
session=value;
System.out.println("Session value is: "+value);
}else if(apiName.contains("authkey")) {
authKey=value;
System.out.println("AuthKey value is: "+value);
}else if(apiName.contains("history")) {
docId=value;
System.out.println("doc id value is: "+docId);
}
return value;
}
//page_function:
no page definition for the given scenario
|
APISteps.java
|
I verify top header details with (.*) API
|
public void verifyTopHeaderContent(String apiName, DataTable dataTable) throws IOException {
List<List<String>> data = dataTable.raw();
int l= dataTable.raw().size();
for(int i=0;i<l;i++) {
String place_id = (data.get(i).get(0));
String expectedName = (data.get(i).get(1));
String value = getJsonPath(response, place_id);
assertEquals(value, expectedName);
}
}
|
no page definition for the given scenario
|
@Then("^I verify top header details with (.*) API$")
public void verifyTopHeaderContent(String apiName, DataTable dataTable) throws IOException {
List<List<String>> data = dataTable.raw();
int l= dataTable.raw().size();
for(int i=0;i<l;i++) {
String place_id = (data.get(i).get(0));
String expectedName = (data.get(i).get(1));
String value = getJsonPath(response, place_id);
assertEquals(value, expectedName);
}
}
|
//step_function:
public void verifyTopHeaderContent(String apiName, DataTable dataTable) throws IOException {
List<List<String>> data = dataTable.raw();
int l= dataTable.raw().size();
for(int i=0;i<l;i++) {
String place_id = (data.get(i).get(0));
String expectedName = (data.get(i).get(1));
String value = getJsonPath(response, place_id);
assertEquals(value, expectedName);
}
}
//page_function:
no page definition for the given scenario
|
As a Quality Assurance Manager, write step definition and page definition code using Java with Cucumber framework for the below given instruction.
###
instruction:
I verify top header details with (.*) API
###
response:
//step_function:
public void verifyTopHeaderContent(String apiName, DataTable dataTable) throws IOException {
List<List<String>> data = dataTable.raw();
int l= dataTable.raw().size();
for(int i=0;i<l;i++) {
String place_id = (data.get(i).get(0));
String expectedName = (data.get(i).get(1));
String value = getJsonPath(response, place_id);
assertEquals(value, expectedName);
}
}
//page_function:
no page definition for the given scenario
|
APISteps.java
|
I am able to find content of (.*) API
|
public void verify_detailAPI_using(String apiName,DataTable dataTable) throws IOException {
List<List<String>> data = dataTable.raw();
int l= dataTable.raw().size();
for(int i=0;i<l;i++) {
String place_id = (data.get(i).get(0));
String value = getJsonPath(response, place_id);
System.out.println(place_id + "-->" + value);
}
}
|
no page definition for the given scenario
|
@Then("^I am able to find content of (.*) API$")
public void verify_detailAPI_using(String apiName,DataTable dataTable) throws IOException {
List<List<String>> data = dataTable.raw();
int l= dataTable.raw().size();
for(int i=0;i<l;i++) {
String place_id = (data.get(i).get(0));
String value = getJsonPath(response, place_id);
System.out.println(place_id + "-->" + value);
}
}
|
//step_function:
public void verify_detailAPI_using(String apiName,DataTable dataTable) throws IOException {
List<List<String>> data = dataTable.raw();
int l= dataTable.raw().size();
for(int i=0;i<l;i++) {
String place_id = (data.get(i).get(0));
String value = getJsonPath(response, place_id);
System.out.println(place_id + "-->" + value);
}
}
//page_function:
no page definition for the given scenario
|
As a Quality Assurance Manager, write step definition and page definition code using Java with Cucumber framework for the below given instruction.
###
instruction:
I am able to find content of (.*) API
###
response:
//step_function:
public void verify_detailAPI_using(String apiName,DataTable dataTable) throws IOException {
List<List<String>> data = dataTable.raw();
int l= dataTable.raw().size();
for(int i=0;i<l;i++) {
String place_id = (data.get(i).get(0));
String value = getJsonPath(response, place_id);
System.out.println(place_id + "-->" + value);
}
}
//page_function:
no page definition for the given scenario
|
APISteps.java
|
I clear API parameters
|
public void clearParams() throws IOException {
paramsMap.clear();
}
|
no page definition for the given scenario
|
@Given("^I clear API parameters$")
public void clearParams() throws IOException {
paramsMap.clear();
}
|
//step_function:
public void clearParams() throws IOException {
paramsMap.clear();
}
//page_function:
no page definition for the given scenario
|
As a Quality Assurance Manager, write step definition and page definition code using Java with Cucumber framework for the below given instruction.
###
instruction:
I clear API parameters
###
response:
//step_function:
public void clearParams() throws IOException {
paramsMap.clear();
}
//page_function:
no page definition for the given scenario
|
OnboardingFirstScreenSteps.java
|
I am a Customer
|
public void userIsCustomer() {
}
|
no page definition for the given scenario
|
@Given("^I am a Customer$")
public void userIsCustomer() {
}
|
//step_function:
public void userIsCustomer() {
}
//page_function:
no page definition for the given scenario
|
As a Quality Assurance Manager, write step definition and page definition code using Java with Cucumber framework for the below given instruction.
###
instruction:
I am a Customer
###
response:
//step_function:
public void userIsCustomer() {
}
//page_function:
no page definition for the given scenario
|
OnboardingFirstScreenSteps.java
|
I am on Onboarding screen
|
public void onOnboardingScreen() {
onboardingFirstScreenPage.open();
}
|
no page definition for the given scenario
|
@Given("^I am on Onboarding screen$")
public void onOnboardingScreen() {
onboardingFirstScreenPage.open();
}
|
//step_function:
public void onOnboardingScreen() {
onboardingFirstScreenPage.open();
}
//page_function:
no page definition for the given scenario
|
As a Quality Assurance Manager, write step definition and page definition code using Java with Cucumber framework for the below given instruction.
###
instruction:
I am on Onboarding screen
###
response:
//step_function:
public void onOnboardingScreen() {
onboardingFirstScreenPage.open();
}
//page_function:
no page definition for the given scenario
|
LoginFirstScreenSteps.java
|
I am a Superitendent
|
public void userIsSuperitendent() {
}
|
no page definition for the given scenario
|
@Given("^I am a Superitendent$")
public void userIsSuperitendent() {
}
|
//step_function:
public void userIsSuperitendent() {
}
//page_function:
no page definition for the given scenario
|
As a Quality Assurance Manager, write step definition and page definition code using Java with Cucumber framework for the below given instruction.
###
instruction:
I am a Superitendent
###
response:
//step_function:
public void userIsSuperitendent() {
}
//page_function:
no page definition for the given scenario
|
LoginFirstScreenSteps.java
|
I am on Superitendent Referral Login screen
|
public void onSupReferralLoginScreen() {
loginFirstScreenPage.open();
}
|
no page definition for the given scenario
|
@Given("^I am on Superitendent Referral Login screen$")
public void onSupReferralLoginScreen() {
loginFirstScreenPage.open();
}
|
//step_function:
public void onSupReferralLoginScreen() {
loginFirstScreenPage.open();
}
//page_function:
no page definition for the given scenario
|
As a Quality Assurance Manager, write step definition and page definition code using Java with Cucumber framework for the below given instruction.
###
instruction:
I am on Superitendent Referral Login screen
###
response:
//step_function:
public void onSupReferralLoginScreen() {
loginFirstScreenPage.open();
}
//page_function:
no page definition for the given scenario
|
LoginSecondScreenSteps.java
|
After fetching data from data file )?I validate that new otp is different for mobile number (.*
|
public void validateNewOtpIsDifferent(String file, String mobileNumber) throws FileNotFoundException, IOException {
String[] mobileAccountAndAuthToken;
String account_id="";
String authToken="";
if((file!=null) && (file.contains("data file"))) {
mobileAccountAndAuthToken=commonPage.chooseAccountIDAuthToken(mobileNumber);
account_id=mobileAccountAndAuthToken[0];
authToken=mobileAccountAndAuthToken[1];
mobileNumber=commonPage.fetchDataFromDataProperties(mobileNumber);
}
commonPage.validateNewOtpIsDifferent(account_id,authToken,mobileNumber);
}
|
no page definition for the given scenario
|
@When("^(After fetching data from data file )?I validate that new otp is different for mobile number (.*)$")
public void validateNewOtpIsDifferent(String file, String mobileNumber) throws FileNotFoundException, IOException {
String[] mobileAccountAndAuthToken;
String account_id="";
String authToken="";
if((file!=null) && (file.contains("data file"))) {
mobileAccountAndAuthToken=commonPage.chooseAccountIDAuthToken(mobileNumber);
account_id=mobileAccountAndAuthToken[0];
authToken=mobileAccountAndAuthToken[1];
mobileNumber=commonPage.fetchDataFromDataProperties(mobileNumber);
}
commonPage.validateNewOtpIsDifferent(account_id,authToken,mobileNumber);
}
|
//step_function:
public void validateNewOtpIsDifferent(String file, String mobileNumber) throws FileNotFoundException, IOException {
String[] mobileAccountAndAuthToken;
String account_id="";
String authToken="";
if((file!=null) && (file.contains("data file"))) {
mobileAccountAndAuthToken=commonPage.chooseAccountIDAuthToken(mobileNumber);
account_id=mobileAccountAndAuthToken[0];
authToken=mobileAccountAndAuthToken[1];
mobileNumber=commonPage.fetchDataFromDataProperties(mobileNumber);
}
commonPage.validateNewOtpIsDifferent(account_id,authToken,mobileNumber);
}
//page_function:
no page definition for the given scenario
|
As a Quality Assurance Manager, write step definition and page definition code using Java with Cucumber framework for the below given instruction.
###
instruction:
After fetching data from data file )?I validate that new otp is different for mobile number (.*
###
response:
//step_function:
public void validateNewOtpIsDifferent(String file, String mobileNumber) throws FileNotFoundException, IOException {
String[] mobileAccountAndAuthToken;
String account_id="";
String authToken="";
if((file!=null) && (file.contains("data file"))) {
mobileAccountAndAuthToken=commonPage.chooseAccountIDAuthToken(mobileNumber);
account_id=mobileAccountAndAuthToken[0];
authToken=mobileAccountAndAuthToken[1];
mobileNumber=commonPage.fetchDataFromDataProperties(mobileNumber);
}
commonPage.validateNewOtpIsDifferent(account_id,authToken,mobileNumber);
}
//page_function:
no page definition for the given scenario
|
SignUpFirstScreenSteps.java
|
I am on Superitendent Referral SignUp screen
|
public void onSupReferralLoginScreen() {
signUpFirstPage.open();
}
|
no page definition for the given scenario
|
@Given("^I am on Superitendent Referral SignUp screen$")
public void onSupReferralLoginScreen() {
signUpFirstPage.open();
}
|
//step_function:
public void onSupReferralLoginScreen() {
signUpFirstPage.open();
}
//page_function:
no page definition for the given scenario
|
As a Quality Assurance Manager, write step definition and page definition code using Java with Cucumber framework for the below given instruction.
###
instruction:
I am on Superitendent Referral SignUp screen
###
response:
//step_function:
public void onSupReferralLoginScreen() {
signUpFirstPage.open();
}
//page_function:
no page definition for the given scenario
|
SignUpFirstScreenSteps.java
|
I open the signup page of Altus Power application
|
public void openSignUpPage(){
signUpFirstPage.open();
}
|
no page definition for the given scenario
|
@Given("^I open the signup page of Altus Power application$")
public void openSignUpPage(){
signUpFirstPage.open();
}
|
//step_function:
public void openSignUpPage(){
signUpFirstPage.open();
}
//page_function:
no page definition for the given scenario
|
As a Quality Assurance Manager, write step definition and page definition code using Java with Cucumber framework for the below given instruction.
###
instruction:
I open the signup page of Altus Power application
###
response:
//step_function:
public void openSignUpPage(){
signUpFirstPage.open();
}
//page_function:
no page definition for the given scenario
|
SignUpSecondScreenSteps.java
|
select OTP via (.*
|
public void selectOTPMedia(String media){
otpMediaSelectionPage.selectOTPMedia(media);
}
|
no page definition for the given scenario
|
@And("^select OTP via (.*)$")
public void selectOTPMedia(String media){
otpMediaSelectionPage.selectOTPMedia(media);
}
|
//step_function:
public void selectOTPMedia(String media){
otpMediaSelectionPage.selectOTPMedia(media);
}
//page_function:
no page definition for the given scenario
|
As a Quality Assurance Manager, write step definition and page definition code using Java with Cucumber framework for the below given instruction.
###
instruction:
select OTP via (.*
###
response:
//step_function:
public void selectOTPMedia(String media){
otpMediaSelectionPage.selectOTPMedia(media);
}
//page_function:
no page definition for the given scenario
|
CommonSteps.java
|
After fetching data from data file )?I fetch OTP of mobile number (.*
|
public void fetchOTPFromSms(String file, String mobileNumber) throws Exception {
String[] mobileAccountAndAuthToken=new String[2];
String account_id="";
String authToken="";
if((file!=null) && (file.contains("data file"))) {
mobileAccountAndAuthToken=commonPage.chooseAccountIDAuthToken(mobileNumber);
account_id=mobileAccountAndAuthToken[0];
authToken=mobileAccountAndAuthToken[1];
mobileNumber=commonPage.fetchDataFromDataProperties(mobileNumber);
}
otp=commonPage.fetchOtpFromTwilio(account_id,authToken,mobileNumber);
}
|
no page definition for the given scenario
|
@When("^(After fetching data from data file )?I fetch OTP of mobile number (.*)$")
public void fetchOTPFromSms(String file, String mobileNumber) throws Exception {
String[] mobileAccountAndAuthToken=new String[2];
String account_id="";
String authToken="";
if((file!=null) && (file.contains("data file"))) {
mobileAccountAndAuthToken=commonPage.chooseAccountIDAuthToken(mobileNumber);
account_id=mobileAccountAndAuthToken[0];
authToken=mobileAccountAndAuthToken[1];
mobileNumber=commonPage.fetchDataFromDataProperties(mobileNumber);
}
otp=commonPage.fetchOtpFromTwilio(account_id,authToken,mobileNumber);
}
|
//step_function:
public void fetchOTPFromSms(String file, String mobileNumber) throws Exception {
String[] mobileAccountAndAuthToken=new String[2];
String account_id="";
String authToken="";
if((file!=null) && (file.contains("data file"))) {
mobileAccountAndAuthToken=commonPage.chooseAccountIDAuthToken(mobileNumber);
account_id=mobileAccountAndAuthToken[0];
authToken=mobileAccountAndAuthToken[1];
mobileNumber=commonPage.fetchDataFromDataProperties(mobileNumber);
}
otp=commonPage.fetchOtpFromTwilio(account_id,authToken,mobileNumber);
}
//page_function:
no page definition for the given scenario
|
As a Quality Assurance Manager, write step definition and page definition code using Java with Cucumber framework for the below given instruction.
###
instruction:
After fetching data from data file )?I fetch OTP of mobile number (.*
###
response:
//step_function:
public void fetchOTPFromSms(String file, String mobileNumber) throws Exception {
String[] mobileAccountAndAuthToken=new String[2];
String account_id="";
String authToken="";
if((file!=null) && (file.contains("data file"))) {
mobileAccountAndAuthToken=commonPage.chooseAccountIDAuthToken(mobileNumber);
account_id=mobileAccountAndAuthToken[0];
authToken=mobileAccountAndAuthToken[1];
mobileNumber=commonPage.fetchDataFromDataProperties(mobileNumber);
}
otp=commonPage.fetchOtpFromTwilio(account_id,authToken,mobileNumber);
}
//page_function:
no page definition for the given scenario
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.